From 2e988a61d92e5da7077ae8d9079dbb3229fc86b2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 18 Dec 2012 09:18:22 +0100 Subject: [PATCH] (Android) Same for Android - remove gfx_ctx_clear --- gfx/context/androidegl_ctx.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gfx/context/androidegl_ctx.c b/gfx/context/androidegl_ctx.c index 4e8e5be21b..81d391681c 100644 --- a/gfx/context/androidegl_ctx.c +++ b/gfx/context/androidegl_ctx.c @@ -255,11 +255,6 @@ static void gfx_ctx_check_window(bool *quit, *quit = true; } -static void gfx_ctx_clear(void) -{ - glClear(GL_COLOR_BUFFER_BIT); -} - static void gfx_ctx_set_blend(bool enable) { if(enable) @@ -555,7 +550,6 @@ const gfx_ctx_driver_t gfx_ctx_android = { gfx_ctx_write_egl_image, "android", #ifdef HAVE_RMENU - gfx_ctx_clear, gfx_ctx_set_blend, gfx_ctx_set_filtering, gfx_ctx_get_available_resolutions,