From e1fa6b4057cce5f6dd8e57386903183528d5eb92 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Thu, 13 Dec 2018 02:11:37 +1100 Subject: [PATCH] [client] egl: fix cursor regression --- client/renderers/egl/cursor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/renderers/egl/cursor.c b/client/renderers/egl/cursor.c index b3a29987..9f1e1840 100644 --- a/client/renderers/egl/cursor.c +++ b/client/renderers/egl/cursor.c @@ -338,6 +338,7 @@ void egl_cursor_render(EGL_Cursor * cursor) { glEnable(GL_BLEND); + egl_shader_use(cursor->shader); glUniform4f(cursor->uMousePos, cursor->x, cursor->y, cursor->w, cursor->h); glBlendFunc(GL_ONE,GL_ONE_MINUS_SRC_ALPHA); egl_model_render(cursor->model);