mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Added cursor mode changes to peter test log.
This commit is contained in:
parent
3833a70b8d
commit
f9c1f85f02
@ -60,14 +60,17 @@ static void key_callback(GLFWwindow* window, int key, int scancode, int action,
|
||||
{
|
||||
case GLFW_KEY_D:
|
||||
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
|
||||
printf("(( cursor is disabled ))\n");
|
||||
break;
|
||||
|
||||
case GLFW_KEY_H:
|
||||
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_HIDDEN);
|
||||
printf("(( cursor is hidden ))\n");
|
||||
break;
|
||||
|
||||
case GLFW_KEY_N:
|
||||
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
|
||||
printf("(( cursor is normal ))\n");
|
||||
break;
|
||||
|
||||
case GLFW_KEY_R:
|
||||
|
Loading…
Reference in New Issue
Block a user