From 0903b4a610803f9e111fe5a26e3e145c79a0c1c4 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 23 Sep 2018 16:04:20 +1000 Subject: [PATCH] [egl] make new OpenGL ES renderer available Note that this renderer is incomplete at this time as it doesn't render the cursor. --- client/lg-renderers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/lg-renderers.h b/client/lg-renderers.h index 1c112001..58442c02 100644 --- a/client/lg-renderers.h +++ b/client/lg-renderers.h @@ -20,13 +20,13 @@ Place, Suite 330, Boston, MA 02111-1307 USA #pragma once #include "lg-renderer.h" -extern const LG_Renderer LGR_EGL; extern const LG_Renderer LGR_OpenGL; +extern const LG_Renderer LGR_EGL; const LG_Renderer * LG_Renderers[] = { - &LGR_EGL, &LGR_OpenGL, + &LGR_EGL, NULL // end of array sentinal };