From 3ff712fea5dffd52844c8e454eee7b97f4d4421a Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 24 Sep 2018 20:26:31 +1000 Subject: [PATCH] [egl] fix performance issue with cursor updates and add todo message --- client/renderers/egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/renderers/egl.c b/client/renderers/egl.c index 1006418e..c09339a7 100644 --- a/client/renderers/egl.c +++ b/client/renderers/egl.c @@ -495,6 +495,7 @@ void update_mouse_shape(struct Inst * this) case LG_CURSOR_MONOCHROME: { + DEBUG_INFO("TODO: Monochrome cursors are not yet supported by EGL"); #if 0 const int hheight = height / 2; uint32_t d[width * height]; @@ -562,7 +563,6 @@ void update_mouse_shape(struct Inst * this) } } - this->mouseUpdate = true; LG_UNLOCK(this->mouseLock); }