diff options
author | Brian Paul <[email protected]> | 2003-03-08 18:28:14 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-08 18:28:14 +0000 |
commit | 47d8adde43c71f32d3677bb8ad965f262b6f3150 (patch) | |
tree | 30e25ff1b2789c0c5c3b5f9bfe23e2f582253010 /src/glut/dos/mouse.c | |
parent | f4b21ab6458db9df6ef320cbefab7c05ea80e7ea (diff) |
DOS update (Daniel Borca)
Diffstat (limited to 'src/glut/dos/mouse.c')
-rw-r--r-- | src/glut/dos/mouse.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/glut/dos/mouse.c b/src/glut/dos/mouse.c index d82f5e8a8c8..7ba6358bc26 100644 --- a/src/glut/dos/mouse.c +++ b/src/glut/dos/mouse.c @@ -19,7 +19,7 @@ */
/*
- * DOS/DJGPP glut driver v1.3 for Mesa 5.0
+ * DOS/DJGPP glut driver v1.3 for Mesa
*
* Copyright (C) 2002 - Borca Daniel
* Email : [email protected]
@@ -44,3 +44,17 @@ void __glutInitMouse (void) g_curwin->show_mouse = (g_curwin->mouse || g_curwin->motion || g_curwin->passive);
}
}
+
+
+
+void APIENTRY glutSetCursor (int cursor)
+{
+ /* XXX completely futile until full mouse support (maybe never) */
+}
+
+
+
+void APIENTRY glutWarpPointer (int x, int y)
+{
+ pc_warp_mouse(x, y);
+}
|