Make sure we go through all the pointer_coords.

This commit is contained in:
BrandonSchaefer
2014-11-06 00:25:52 -08:00
committed by Camilla Berglund
parent 8712d84bcc
commit 9bd0fae684
2 changed files with 66 additions and 59 deletions
+10 -1
View File
@@ -37,6 +37,15 @@ void _glfwPlatformTerminate(void)
const char* _glfwPlatformGetVersionString(void)
{
return "MIR // FIXME (<0_0>)";
const char* version = _GLFW_VERSION_NUMBER " Mir EGL "
#if defined(_POSIX_TIMERS) && defined(_POSIX_MONOTONIC_CLOCK)
" clock_gettime"
#endif
#if defined(_GLFW_BUILD_DLL)
" shared"
#endif
;
return version;
}