diff options
author | Emil Velikov <[email protected]> | 2016-08-25 13:04:18 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-14 12:53:38 +0100 |
commit | 637d001a97a82142bc20d410655098a0b7b39694 (patch) | |
tree | d65d7248694e38f23a27011b3e7c651be4fabbf7 /src/egl | |
parent | 9caacb39b9f27919a7c986ad0c5d671a81b1f1e0 (diff) |
egl/android: remove duplicate KHR_image_base set
The core egl/dri2 already sets the extension bit _only_ when possible -
which in Android's case is always.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/dri2/platform_android.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index 83ffa236172..ac9072afd5c 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -967,7 +967,6 @@ dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *dpy) dpy->Extensions.ANDROID_framebuffer_target = EGL_TRUE; dpy->Extensions.ANDROID_image_native_buffer = EGL_TRUE; dpy->Extensions.ANDROID_recordable = EGL_TRUE; - dpy->Extensions.KHR_image_base = EGL_TRUE; /* Fill vtbl last to prevent accidentally calling virtual function during * initialization. |