The open source OpenXR runtime
0
fork

Configure Feed

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

c/client: Log if a format conversion isn't supported

+1 -1
+1 -1
src/xrt/compositor/client/comp_gl_client.c
··· 66 66 case GL_DEPTH_COMPONENT32F: return 126 /*VK_FORMAT_D32_SFLOAT*/; 67 67 case GL_DEPTH24_STENCIL8: return 129 /*VK_FORMAT_D24_UNORM_S8_UINT*/; 68 68 case GL_DEPTH32F_STENCIL8: return 130 /*VK_FORMAT_D32_SFLOAT_S8_UINT*/; 69 - default: return 0; 69 + default: U_LOG_W("Cannot convert GL format %" PRIu64 " to VK format!", format); return 0; 70 70 } 71 71 } 72 72