Doxygen Source Code Documentation
glut_dials.c File Reference
#include "glutint.h"Go to the source code of this file.
Functions | |
| void | glutButtonBoxFunc (GLUTbuttonBoxCB buttonBoxFunc) |
| void | glutDialsFunc (GLUTdialsCB dialsFunc) |
Function Documentation
|
|
Definition at line 11 of file glut_dials.c. References __glutPutOnWorkList(), GLUT_DEVICE_MASK_WORK, and GLUTbuttonBoxCB.
00012 {
00013 __glutCurrentWindow->buttonBox = buttonBoxFunc;
00014 __glutUpdateInputDeviceMaskFunc = __glutUpdateInputDeviceMask;
00015 __glutPutOnWorkList(__glutCurrentWindow,
00016 GLUT_DEVICE_MASK_WORK);
00017 }
|
|
|
Definition at line 20 of file glut_dials.c. References __glutPutOnWorkList(), GLUT_DEVICE_MASK_WORK, and GLUTdialsCB.
00021 {
00022 __glutCurrentWindow->dials = dialsFunc;
00023 __glutUpdateInputDeviceMaskFunc = __glutUpdateInputDeviceMask;
00024 __glutPutOnWorkList(__glutCurrentWindow,
00025 GLUT_DEVICE_MASK_WORK);
00026 }
|