diff options
author | Adam Jackson <[email protected]> | 2017-11-16 13:27:27 -0500 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2017-11-17 16:43:16 -0500 |
commit | ddcd4b05a35fdad400637c3decfa9fe183b3e8c7 (patch) | |
tree | 374c93bdfadb918179b126a6908b97af4053034e /src/egl/main/egldisplay.h | |
parent | 1831e3fb1dc2e8bdc624742fc928e892fc665d26 (diff) |
egl: Convert int to attrib in eglGetPlatformDisplay
... because converting attrib to int truncates, and that's bad.
Signed-off-by: Adam Jackson <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r-- | src/egl/main/egldisplay.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index 0f57680b21f..52fb4ce21bb 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -266,7 +266,7 @@ _eglIsResourceLinked(_EGLResource *res) #ifdef HAVE_X11_PLATFORM _EGLDisplay* -_eglGetX11Display(Display *native_display, const EGLint *attrib_list); +_eglGetX11Display(Display *native_display, const EGLAttrib *attrib_list); #endif #ifdef HAVE_DRM_PLATFORM @@ -274,7 +274,7 @@ struct gbm_device; _EGLDisplay* _eglGetGbmDisplay(struct gbm_device *native_display, - const EGLint *attrib_list); + const EGLAttrib *attrib_list); #endif #ifdef HAVE_WAYLAND_PLATFORM @@ -282,13 +282,13 @@ struct wl_display; _EGLDisplay* _eglGetWaylandDisplay(struct wl_display *native_display, - const EGLint *attrib_list); + const EGLAttrib *attrib_list); #endif #ifdef HAVE_SURFACELESS_PLATFORM _EGLDisplay* _eglGetSurfacelessDisplay(void *native_display, - const EGLint *attrib_list); + const EGLAttrib *attrib_list); #endif #ifdef __cplusplus |