From 5b8051581e2873fdac5bbbb9b8a10460fb6c3965 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 9 Nov 2016 00:23:19 +0100 Subject: [PATCH] OSMesa: Allow cursor creation --- src/osmesa_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osmesa_window.c b/src/osmesa_window.c index c010be53..38acdb21 100644 --- a/src/osmesa_window.c +++ b/src/osmesa_window.c @@ -226,12 +226,12 @@ int _glfwPlatformCreateCursor(_GLFWcursor* cursor, const GLFWimage* image, int xhot, int yhot) { - return GLFW_FALSE; + return GLFW_TRUE; } int _glfwPlatformCreateStandardCursor(_GLFWcursor* cursor, int shape) { - return GLFW_FALSE; + return GLFW_TRUE; } void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)