The open source OpenXR runtime
0
fork

Configure Feed

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

c/client: Print error if we can not query client API type from context

+1
+1
src/xrt/compositor/client/comp_egl_client.c
··· 291 291 292 292 EGLint egl_client_type; 293 293 if (!eglQueryContext(display, context, EGL_CONTEXT_CLIENT_TYPE, &egl_client_type)) { 294 + EGL_ERROR("Could not query EGL client API type from context: %p", (void *)context); 294 295 return XRT_ERROR_OPENGL; 295 296 } 296 297