File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ PKG_PRETTY_NAME="Mesa Android Wrapper"
44VK_DRIVER_LIB=" libvulkan_wrapper.so"
55
66GIT_URL=https://github.com/KreitinnSoftware/mesa
7- GIT_COMMIT=aa4faf628dd477ea7b05f416b4d8da07f75ab399
7+ GIT_COMMIT=7227cf46526196d54b22bd9ee53a265824f37420
88LDFLAGS=" -L$PREFIX /lib -landroid-shmem"
99MESON_ARGS=" -Dgallium-drivers= -Dvulkan-drivers=wrapper -Dglvnd=disabled -Dplatforms=x11 -Dxmlconfig=enabled -Dllvm=disabled -Dopengl=false -Degl=disabled -Dzstd=enabled"
Original file line number Diff line number Diff line change 1- PKG_VER=24.3.0
1+ PKG_VER=25.1.4
22PKG_CATEGORY=" OpenGLDriver"
33PKG_PRETTY_NAME=" Mesa Zink Driver"
44
Original file line number Diff line number Diff line change 1+ `_mesa_glapi_tls_Context` and `_mesa_glapi_tls_Dispatch` is declared as thread_local.
2+ Their symbol names will be `__emutls_v._mesa_glapi_tls_Context` and `__emutls_v._mesa_glapi_tls_Dispatch`
3+ as emulated TLS is enabled by NDK when `__ANDROID_API__` <= 28.
4+
5+ --- a/src/gallium/targets/dri/dri.sym.in
6+ +++ b/src/gallium/targets/dri/dri.sym.in
7+ @@ -8,8 +8,8 @@
8+ _mesa_glapi_get_proc_offset;
9+ _mesa_glapi_set_context;
10+ _mesa_glapi_set_dispatch;
11+ - _mesa_glapi_tls_Context;
12+ - _mesa_glapi_tls_Dispatch;
13+ + __emutls_v._mesa_glapi_tls_Context;
14+ + __emutls_v._mesa_glapi_tls_Dispatch;
15+
16+ ddebug_screen_create;
17+ noop_screen_create;
You can’t perform that action at this time.
0 commit comments