Rename raw input to raw mouse motion, cleanup

From upstream: 1155c83013.
This commit is contained in:
Luflosi
2020-05-24 19:47:52 +02:00
parent 48fb051253
commit 55ad228166
9 changed files with 105 additions and 84 deletions

5
glfw/null_window.c vendored
View File

@@ -208,12 +208,11 @@ void _glfwPlatformSetWindowOpacity(_GLFWwindow* window UNUSED, float opacity UNU
{
}
void _glfwPlatformSetRawInput(_GLFWwindow *window, bool enabled)
void _glfwPlatformSetRawMouseMotion(_GLFWwindow *window UNUSED, bool enabled UNUSED)
{
window->useRawInput = enabled;
}
bool _glfwPlatformRawInputSupported(void)
bool _glfwPlatformRawMouseMotionSupported(void)
{
return false;
}