Added Wayland / MIR / Null window declaration of _glfwPlatformSetTouchInput

This commit is contained in:
eriksunden 2018-05-18 14:48:54 +02:00
parent a4f57b7f55
commit 384d007326
3 changed files with 12 additions and 0 deletions

View File

@ -713,6 +713,10 @@ void _glfwPlatformPostEmptyEvent(void)
{
}
void _glfwPlatformSetTouchInput(_GLFWwindow* window, int enabled)
{
}
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
{
if (width)

View File

@ -248,6 +248,10 @@ void _glfwPlatformPostEmptyEvent(void)
{
}
void _glfwPlatformSetTouchInput(_GLFWwindow* window, int enabled)
{
}
void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos)
{
}

View File

@ -1194,6 +1194,10 @@ void _glfwPlatformPostEmptyEvent(void)
wl_display_sync(_glfw.wl.display);
}
void _glfwPlatformSetTouchInput(_GLFWwindow* window, int enabled)
{
}
void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos)
{
if (xpos)