[Mesa-dev] [PATCH 2/2] eglplatform: use unsigned long instead of 32-bit ints in generic platform

Brian Paul brianp at vmware.com
Thu Jun 27 07:04:51 PDT 2013


On 06/27/2013 05:35 AM, Ross Burton wrote:
> In the generic Unix case use the "unsigned long" type instead of 32-bit
> integers so that the type sizes are consistant on 64-bit machines between X11
> and not-X11.
>
> Signed-off-by: Ross Burton <ross.burton at intel.com>
> ---
>   include/EGL/eglplatform.h |    4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h
> index 17fdc61..21b18fe 100644
> --- a/include/EGL/eglplatform.h
> +++ b/include/EGL/eglplatform.h
> @@ -109,8 +109,8 @@ typedef void                        *EGLNativeDisplayType;
>   #ifdef MESA_EGL_NO_X11_HEADERS
>
>   typedef void            *EGLNativeDisplayType;
> -typedef khronos_uint32_t EGLNativePixmapType;
> -typedef khronos_uint32_t EGLNativeWindowType;
> +typedef khronos_uintptr_t EGLNativePixmapType;
> +typedef khronos_uintptr_t EGLNativeWindowType;
>
>   #else
>
>

These two look OK to me.

Reviewed-by: Brian Paul <brianp at vmware.com>


More information about the mesa-dev mailing list