1UNTITLED LOCAL UNTITLED
2
4 glutKeyboardUpFunc — Sets the keyboard key release callback for the cur‐
5 rent window.
6
8 OpenGLUT - input
9
11 #include <openglut.h>
12
13 void
14 glutKeyboardUpFunc(void( *callback )( unsigned char key, int x, int y ));
15
17 callback Client hook for ASCII 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 glutKeyboardFunc(), 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 glutKeyboardFunc(3) glutSpecialUpFunc(3)
32
33
34
35
36 Epoch