summaryrefslogtreecommitdiffstats
path: root/src/glut/glx/glut_space.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/glut/glx/glut_space.c')
-rw-r--r--src/glut/glx/glut_space.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/glut/glx/glut_space.c b/src/glut/glx/glut_space.c
deleted file mode 100644
index cde6ea7..0000000
--- a/src/glut/glx/glut_space.c
+++ /dev/null
@@ -1,35 +0,0 @@
-
-/* Copyright (c) Mark J. Kilgard, 1994. */
-
-/* This program is freely distributable without licensing fees
- and is provided without guarantee or warrantee expressed or
- implied. This program is -not- in the public domain. */
-
-#include "glutint.h"
-
-void GLUTAPIENTRY
-glutSpaceballMotionFunc(GLUTspaceMotionCB spaceMotionFunc)
-{
- __glutCurrentWindow->spaceMotion = spaceMotionFunc;
- __glutUpdateInputDeviceMaskFunc = __glutUpdateInputDeviceMask;
- __glutPutOnWorkList(__glutCurrentWindow,
- GLUT_DEVICE_MASK_WORK);
-}
-
-void GLUTAPIENTRY
-glutSpaceballRotateFunc(GLUTspaceRotateCB spaceRotateFunc)
-{
- __glutCurrentWindow->spaceRotate = spaceRotateFunc;
- __glutUpdateInputDeviceMaskFunc = __glutUpdateInputDeviceMask;
- __glutPutOnWorkList(__glutCurrentWindow,
- GLUT_DEVICE_MASK_WORK);
-}
-
-void GLUTAPIENTRY
-glutSpaceballButtonFunc(GLUTspaceButtonCB spaceButtonFunc)
-{
- __glutCurrentWindow->spaceButton = spaceButtonFunc;
- __glutUpdateInputDeviceMaskFunc = __glutUpdateInputDeviceMask;
- __glutPutOnWorkList(__glutCurrentWindow,
- GLUT_DEVICE_MASK_WORK);
-}