summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/freeglut/glut-cursor-inherit.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/freeglut/glut-cursor-inherit.patch')
-rw-r--r--abs/core-testing/freeglut/glut-cursor-inherit.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core-testing/freeglut/glut-cursor-inherit.patch b/abs/core-testing/freeglut/glut-cursor-inherit.patch
new file mode 100644
index 0000000..b56a37c
--- /dev/null
+++ b/abs/core-testing/freeglut/glut-cursor-inherit.patch
@@ -0,0 +1,23 @@
+--- freeglut-2.4.0.orig/src/freeglut_cursor.c
++++ freeglut-2.4.0/src/freeglut_cursor.c
+@@ -130,7 +130,9 @@
+ XCreateFontCursor( fgDisplay.Display, entry->cursorShape );
+ }
+ cursor = entry->cachedCursor;
+- } else {
++ if (cursor == None)
++ fgError( "Failed to create cursor" );
++ } else {
+ switch( cursorIDToUse )
+ {
+ case GLUT_CURSOR_NONE:
+@@ -147,9 +149,6 @@
+ }
+ }
+
+- if ( ( cursorIDToUse != GLUT_CURSOR_NONE ) && ( cursor == None ) ) {
+- fgError( "Failed to create cursor" );
+- }
+ XDefineCursor( fgDisplay.Display,
+ window->Window.Handle, cursor );
+ }