diff options
author | Brian Paul <[email protected]> | 2008-05-27 14:33:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-27 14:33:54 -0600 |
commit | 721ba15bf4596b2e9589e7656005b387724875c3 (patch) | |
tree | 34821f5061822a2eac270444fca03db583376f55 /src/egl/main/egldisplay.h | |
parent | 5f8a4f3e5e8fe78f1abe9ca6dd1131ad53d3d943 (diff) |
added _eglGet*Handle() functions
These are the inverse of the _eglLookup*() functions.
Returns the public handle for a private surface/config/display/etc.
Removes glapi.c's direct access of private fields.
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r-- | src/egl/main/egldisplay.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index 1a03fdd4ad9..fe7b7884555 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -24,6 +24,10 @@ extern _EGLDisplay * _eglNewDisplay(NativeDisplayType displayName); +EGLDisplay +_eglGetDisplayHandle(_EGLDisplay *display); + + extern _EGLDisplay * _eglLookupDisplay(EGLDisplay dpy); |