diff options
author | Brian Paul <[email protected]> | 2005-05-16 02:21:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-05-16 02:21:08 +0000 |
commit | f9bad3dfea43d792876c3a7221b9cfcd107085eb (patch) | |
tree | 3a4a502ea04efff4bdce4655f46433c27bd01d9b /src/egl/main/eglapi.c | |
parent | a495ed372f7056c84cbf9c5a38622367c0fac36e (diff) |
use EGLint instead of unsigned long for eglCopyContextMESA, added comments
Diffstat (limited to 'src/egl/main/eglapi.c')
-rw-r--r-- | src/egl/main/eglapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c index 02b944f136c..c5e67ed672a 100644 --- a/src/egl/main/eglapi.c +++ b/src/egl/main/eglapi.c @@ -416,7 +416,7 @@ eglGetModeAttribMESA(EGLDisplay dpy, EGLModeMESA mode, EGLint attribute, EGLint EGLBoolean APIENTRY -eglCopyContextMESA(EGLDisplay dpy, EGLContext source, EGLContext dest, unsigned long mask) +eglCopyContextMESA(EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask) { _EGLDriver *drv = _eglLookupDriver(dpy); if (drv) |