From: Kristian H. Kristensen Date: Fri, 22 May 2020 21:56:08 +0000 (-0700) Subject: egl/android: Drop unused variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5a413e19a82b1d97e9d7e0fc504e6012781d90b;p=mesa.git egl/android: Drop unused variable src/egl/drivers/dri2/platform_android.c:332:29: warning: unused variable 'dri2_dpy' [-Wunused-variable] Reviewed-by: Rob Clark Reviewed-by: Marek Olšák Part-of: --- diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index eee336cca93..31acf540657 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -309,7 +309,6 @@ static bool droid_set_shared_buffer_mode(_EGLDisplay *disp, _EGLSurface *surf, bool mode) { #if ANDROID_API_LEVEL >= 24 - struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp); struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf); struct ANativeWindow *window = dri2_surf->window;