mirror of
https://github.com/glfw/glfw.git
synced 2025-06-15 12:12:16 +00:00
glfwGetKeyName(int key) - Added stub methods for X11 and Cocoa
This commit is contained in:
parent
f4ed02f6c8
commit
6edcc75a6b
@ -1094,6 +1094,11 @@ void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char*_glfwPlatformGetKeyName(int key)
|
||||||
|
{
|
||||||
|
// TODO: Implement.
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
////// GLFW native API //////
|
////// GLFW native API //////
|
||||||
|
@ -1163,6 +1163,11 @@ void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char*_glfwPlatformGetKeyName(int key)
|
||||||
|
{
|
||||||
|
// TODO: Implement.
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
////// GLFW native API //////
|
////// GLFW native API //////
|
||||||
|
Loading…
Reference in New Issue
Block a user