mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-19 21:28:50 +00:00
c/client: Fix warning and tidy
This commit is contained in:
parent
a65077b08a
commit
fba9f2532c
|
@ -76,7 +76,7 @@ xrt_gfx_provider_create_gl_egl(struct xrt_compositor_native *xcn,
|
||||||
&egl_client_type)) {
|
&egl_client_type)) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
bool is_es = false;
|
|
||||||
switch (egl_client_type) {
|
switch (egl_client_type) {
|
||||||
case EGL_OPENGL_API:
|
case EGL_OPENGL_API:
|
||||||
#if defined(XRT_HAVE_OPENGL)
|
#if defined(XRT_HAVE_OPENGL)
|
||||||
|
@ -89,7 +89,6 @@ xrt_gfx_provider_create_gl_egl(struct xrt_compositor_native *xcn,
|
||||||
|
|
||||||
case EGL_OPENGL_ES_API:
|
case EGL_OPENGL_ES_API:
|
||||||
#if defined(XRT_HAVE_OPENGLES)
|
#if defined(XRT_HAVE_OPENGLES)
|
||||||
is_es = true;
|
|
||||||
gladLoadGLES2(get_gl_procaddr);
|
gladLoadGLES2(get_gl_procaddr);
|
||||||
break;
|
break;
|
||||||
#else
|
#else
|
||||||
|
@ -99,6 +98,7 @@ xrt_gfx_provider_create_gl_egl(struct xrt_compositor_native *xcn,
|
||||||
#endif
|
#endif
|
||||||
default: EGL_ERROR("Unsupported EGL client type"); return NULL;
|
default: EGL_ERROR("Unsupported EGL client type"); return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct client_gl_compositor *c =
|
struct client_gl_compositor *c =
|
||||||
U_TYPED_CALLOC(struct client_gl_compositor);
|
U_TYPED_CALLOC(struct client_gl_compositor);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue