mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-08 14:48:05 +02:00
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>
(cherry picked from commit 53d7c243ba)
This commit is contained in:
parent
8ba1302951
commit
df842e64a2
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue