1UNTITLED LOCAL UNTITLED
2
4 glutSpecialUpFunc — Sets the special key release callback for the current
5 window
6
8 OpenGLUT - input
9
11 #include <openglut.h>
12
13 void
14 glutSpecialUpFunc(void( *callback )( int key, int x, int y ));
15
17 callback Client hook for special key releases.
18
20 This function provides a way to detect the release of a keyboard key.
21 The keys are reported exactly as with glutSpecialFunc(), save that the
22 callback registered via this function is used to report the event.
23
24 This callback is bound to the current window .
25
27 Windows created via glutCreateMenuWindow() always cascade keyboard and
28 mouse events to their parent.
29
31 glutSpecialFunc(3) glutKeyboardUpFunc(3)
32
33
34
35
36 Epoch