summaryrefslogtreecommitdiffstats
path: root/src/egl/main/eglfallbacks.c
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2011-12-20 16:28:20 +0800
committerChia-I Wu <[email protected]>2011-12-20 16:59:09 +0800
commitf957cac772d34b3406be3236b81571e456ee40e8 (patch)
tree1627dcf5771967c0b5677618638d0e31c8cbf63f /src/egl/main/eglfallbacks.c
parented1ff2acec2cdfe3eace9f4caa6cfe5e0f175534 (diff)
egl: remove #ifdef's for official extensions
There is no point in having them when we distribute eglext.h. As for unofficial extensions, there is a chance that we might remove some of them evetually. Keeping the #ifdef's for now should make that easier.
Diffstat (limited to 'src/egl/main/eglfallbacks.c')
-rw-r--r--src/egl/main/eglfallbacks.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/egl/main/eglfallbacks.c b/src/egl/main/eglfallbacks.c
index b4f35d742ae..0b70e929fe0 100644
--- a/src/egl/main/eglfallbacks.c
+++ b/src/egl/main/eglfallbacks.c
@@ -103,18 +103,14 @@ _eglInitDriverFallbacks(_EGLDriver *drv)
drv->API.QueryModeStringMESA = _eglQueryModeStringMESA;
#endif /* EGL_MESA_screen_surface */
-#ifdef EGL_KHR_image_base
drv->API.CreateImageKHR = NULL;
drv->API.DestroyImageKHR = NULL;
-#endif /* EGL_KHR_image_base */
-#ifdef EGL_KHR_reusable_sync
drv->API.CreateSyncKHR = NULL;
drv->API.DestroySyncKHR = NULL;
drv->API.ClientWaitSyncKHR = NULL;
drv->API.SignalSyncKHR = NULL;
drv->API.GetSyncAttribKHR = _eglGetSyncAttribKHR;
-#endif /* EGL_KHR_reusable_sync */
#ifdef EGL_MESA_drm_image
drv->API.CreateDRMImageMESA = NULL;