summaryrefslogtreecommitdiff
path: root/clients
diff options
context:
space:
mode:
authorKamal Pandey <kamal.pandey@ifm.com>2019-04-04 19:45:45 +0530
committerKamal Pandey <kamal.pandey@ifm.com>2019-04-04 19:45:45 +0530
commit53d7c243ba0baa052081735b8effff4e2679ce65 (patch)
treeebc84667bec5d59fde37c5452b4e488b7f869a89 /clients
parent6f9db6c4a16d853bbc5889ad5ff0d9c75e21d69c (diff)
downloadweston-53d7c243ba0baa052081735b8effff4e2679ce65.tar.gz
FIX: weston: clients: typo in simple-dmabuf-egl.c
Fix variable EGL_NO_IMAGE to EGL_NO_IMAGE_KHR in clients/simple-dmabuf-egl.c Signed-off-by: Kamal Pandey <pandeykamal13526@gmail.com>
Diffstat (limited to 'clients')
-rw-r--r--clients/simple-dmabuf-egl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/simple-dmabuf-egl.c b/clients/simple-dmabuf-egl.c
index 75d880e0..2d99c470 100644
--- a/clients/simple-dmabuf-egl.c
+++ b/clients/simple-dmabuf-egl.c
@@ -293,7 +293,7 @@ create_fbo_for_buffer(struct display *display, struct buffer *buffer)
EGL_NO_CONTEXT,
EGL_LINUX_DMA_BUF_EXT,
NULL, attribs);
- if (buffer->egl_image == EGL_NO_IMAGE) {
+ if (buffer->egl_image == EGL_NO_IMAGE_KHR) {
fprintf(stderr, "EGLImageKHR creation failed\n");
return false;
}