summaryrefslogtreecommitdiffstats
path: root/src/egl/main/eglapi.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2015-03-13 17:00:26 -0700
committerMatt Turner <[email protected]>2015-03-17 14:09:56 -0700
commit6c6e2a15aa7e8c0fd9a1180a901389c1692992c3 (patch)
tree4d60f9eb97c0eb5af8eaaf2a925fddecb39c338e /src/egl/main/eglapi.h
parent827da841a1b3dbd4252c39be99965710c5085f5a (diff)
egl: Remove eglQueryString virtual dispatch.
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/egl/main/eglapi.h')
-rw-r--r--src/egl/main/eglapi.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/egl/main/eglapi.h b/src/egl/main/eglapi.h
index cb01cab0c00..0626719ae70 100644
--- a/src/egl/main/eglapi.h
+++ b/src/egl/main/eglapi.h
@@ -71,7 +71,6 @@ typedef EGLBoolean (*SwapBuffers_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurfa
typedef EGLBoolean (*CopyBuffers_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surface, void *native_pixmap_target);
/* misc funcs */
-typedef const char *(*QueryString_t)(_EGLDriver *drv, _EGLDisplay *dpy, EGLint name);
typedef EGLBoolean (*WaitClient_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *ctx);
typedef EGLBoolean (*WaitNative_t)(_EGLDriver *drv, _EGLDisplay *dpy, EGLint engine);
@@ -170,7 +169,6 @@ struct _egl_api
SwapBuffers_t SwapBuffers;
CopyBuffers_t CopyBuffers;
- QueryString_t QueryString;
WaitClient_t WaitClient;
WaitNative_t WaitNative;
GetProcAddress_t GetProcAddress;