diff options
author | Emil Velikov <[email protected]> | 2018-09-03 13:05:24 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-10-03 13:38:06 +0100 |
commit | 91ccb59ff48126ce7e9893a781646b22057f023a (patch) | |
tree | a044e62e980d9c2a79f807aa78659b85fe9362da /src/egl/drivers | |
parent | 8f66743ca2cd781e912a3998196bf2ef1b9f8f4c (diff) |
egl/android: remove eglSwap* surface check
Already handled further up in eglapi.c
Cc: samiuddi <[email protected]>
Cc: Erik Faye-Lund <[email protected]>
Cc: Tomasz Figa <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/egl/drivers')
-rw-r--r-- | src/egl/drivers/dri2/platform_android.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index bcb3c019b9a..7413b8dfe02 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -676,10 +676,6 @@ droid_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw) { struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp); struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw); - - if (dri2_surf->base.Type != EGL_WINDOW_BIT) - return EGL_TRUE; - const bool has_mutable_rb = _eglSurfaceHasMutableRenderBuffer(draw); /* From the EGL_KHR_mutable_render_buffer spec (v12): |