From 3c61814c5694e748c8973db3b797b13cc6ac1286 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 15 Dec 2017 10:20:20 +1100 Subject: [PATCH] [client] windows cursors are in BGRA format --- client/renderers/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/renderers/opengl.c b/client/renderers/opengl.c index dece84ac..2edda7ac 100644 --- a/client/renderers/opengl.c +++ b/client/renderers/opengl.c @@ -391,7 +391,7 @@ bool lgr_opengl_on_mouse_shape(void * opaque, const LG_RendererCursor cursor, co width , height , 0 , - GL_RGBA, + GL_BGRA, // windows cursors are in BGRA format GL_UNSIGNED_BYTE, data );