mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-08 12:28:04 +02:00
clients/simple-dmabuf-egl: Properly check for error in gbm_bo_get_handle_for_plane
gbm_bo_get_handle_for_plane returns handle.s32 == -1 on error, at least
for the Mesa dri implementation.
Reported-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
(cherry picked from commit ff98a9080f)
This commit is contained in:
parent
91a6a37d45
commit
384210be5a
1 changed files with 11 additions and 3 deletions
|
|
@ -369,9 +369,17 @@ create_dmabuf_buffer(struct display *display, struct buffer *buffer,
|
|||
#ifdef HAVE_GBM_MODIFIERS
|
||||
buffer->plane_count = gbm_bo_get_plane_count(buffer->bo);
|
||||
for (i = 0; i < buffer->plane_count; ++i) {
|
||||
uint32_t handle = gbm_bo_get_handle_for_plane(buffer->bo, i).u32;
|
||||
int ret = drmPrimeHandleToFD(display->gbm.drm_fd, handle, 0,
|
||||
&buffer->dmabuf_fds[i]);
|
||||
int ret;
|
||||
union gbm_bo_handle handle;
|
||||
|
||||
handle = gbm_bo_get_handle_for_plane(buffer->bo, i);
|
||||
if (handle.s32 == -1) {
|
||||
fprintf(stderr, "error: failed to get gbm_bo_handle\n");
|
||||
goto error;
|
||||
}
|
||||
|
||||
ret = drmPrimeHandleToFD(display->gbm.drm_fd, handle.u32, 0,
|
||||
&buffer->dmabuf_fds[i]);
|
||||
if (ret < 0 || buffer->dmabuf_fds[i] < 0) {
|
||||
fprintf(stderr, "error: failed to get dmabuf_fd\n");
|
||||
goto error;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue