The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

c/client: Rename insert fence function to match other functions

+2 -2
+2 -2
src/xrt/compositor/client/comp_egl_client.c
··· 186 186 */ 187 187 188 188 static xrt_result_t 189 - insert_fence_android_native(struct xrt_compositor *xc, xrt_graphics_sync_handle_t *out_handle) 189 + client_egl_insert_fence(struct xrt_compositor *xc, xrt_graphics_sync_handle_t *out_handle) 190 190 { 191 191 struct client_egl_compositor *ceglc = client_egl_compositor(xc); 192 192 ··· 444 444 */ 445 445 client_gl_insert_fence_func_t insert_fence_func = NULL; 446 446 if (GLAD_EGL_ANDROID_native_fence_sync) { 447 - insert_fence_func = insert_fence_android_native; 447 + insert_fence_func = client_egl_insert; 448 448 } 449 449 450 450 bool bret = client_gl_compositor_init( //