diff options
author | Chia-I Wu <[email protected]> | 2010-01-28 16:57:49 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-28 17:28:48 +0800 |
commit | 6baa2c8d022e5dd1e305e7da2925c1e6f9370f35 (patch) | |
tree | c354b4fb532e992c42563bec2b63b668bf453e85 /src/egl/main/eglcontext.h | |
parent | 45ba53324341234144ca02122bf2c0b5ef58c361 (diff) |
egl: Migrate drivers to use _eglBindContext.
_eglMakeCurrent is a big hammer that is not easy to use. Migrate
drivers to use _eglBindContext and un-export _eglMakeCurrent.
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 84d8deed51c..4811e3bb7ad 100644 --- a/src/egl/main/eglcontext.h +++ b/src/egl/main/eglcontext.h @@ -51,7 +51,7 @@ PUBLIC EGLBoolean _eglBindContext(_EGLContext **ctx, _EGLSurface **draw, _EGLSurface **read); -PUBLIC EGLBoolean +extern EGLBoolean _eglMakeCurrent(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *draw, _EGLSurface *read, _EGLContext *ctx); |