aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-03-15 15:51:15 +0100
committeremersion <contact@emersion.fr>2018-03-15 15:51:15 +0100
commit0e253e0615469eb9293045483088f713e64e1d82 (patch)
tree32889f6d9fad87a3aa9d0931c75df9f90352e477
parentde0e40d621c51cf075825633946a9ac7f98ac213 (diff)
render/gles2: don't set inverted_y when EGL_WAYLAND_Y_INVERTED_WL is unsupported
-rw-r--r--render/gles2/texture.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/render/gles2/texture.c b/render/gles2/texture.c
index 5e84890f..775f7cdc 100644
--- a/render/gles2/texture.c
+++ b/render/gles2/texture.c
@@ -163,8 +163,10 @@ static bool gles2_texture_upload_drm(struct wlr_texture *_tex,
(EGLint*)&tex->wlr_texture.height);
EGLint inverted_y;
- wlr_egl_query_buffer(tex->egl, buf, EGL_WAYLAND_Y_INVERTED_WL, &inverted_y);
- tex->wlr_texture.inverted_y = !!inverted_y;
+ if (wlr_egl_query_buffer(tex->egl, buf, EGL_WAYLAND_Y_INVERTED_WL,
+ &inverted_y)) {
+ tex->wlr_texture.inverted_y = !!inverted_y;
+ }
GLenum target;
const struct pixel_format *pf;