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/eglcontext.h | |
parent | a495ed372f7056c84cbf9c5a38622367c0fac36e (diff) |
use EGLint instead of unsigned long for eglCopyContextMESA, added comments
Diffstat (limited to 'src/egl/main/eglcontext.h')
-rw-r--r-- | src/egl/main/eglcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglcontext.h b/src/egl/main/eglcontext.h index d2c56fdb075..d74d6e3253e 100644 --- a/src/egl/main/eglcontext.h +++ b/src/egl/main/eglcontext.h @@ -62,6 +62,6 @@ _eglMakeCurrent(_EGLDriver *drv, EGLDisplay dpy, EGLSurface draw, EGLSurface rea extern EGLBoolean -_eglCopyContextMESA(_EGLDriver *drv, EGLDisplay dpy, EGLContext source, EGLContext dest, unsigned long mask); +_eglCopyContextMESA(_EGLDriver *drv, EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask); #endif /* EGLCONTEXT_INCLUDED */ |