Fix glamor_egl->egl_create_image_khr makes pointer from integer

This is a warning, but a real problem can occur on some system.

Reported-by: Fabio Pedretti <fabio.ped@libero.it>
Reviewed-by: Axel Davy <davyaxel@free.fr>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
This commit is contained in:
Gaetan Nadon 2013-12-08 16:43:08 -05:00 committed by Eric Anholt
parent 7cfd9cc232
commit 752a79562e

View File

@ -453,7 +453,7 @@ int glamor_egl_dri3_fd_name_from_tex (ScreenPtr screen,
image = glamor_egl->egl_create_image_khr(glamor_egl->display,
glamor_egl->context,
EGL_GL_TEXTURE_2D_KHR,
tex, attribs);
(EGLClientBuffer)(uintptr_t)tex, attribs);
if (image == EGL_NO_IMAGE_KHR)
goto failure;