[add] GetMonitorRefreshRate(int monitor); (#1289)

This commit is contained in:
Shylie
2020-06-24 12:28:57 -04:00
committed by GitHub
parent be80708d41
commit 25fb24ba7d
2 changed files with 17 additions and 0 deletions

View File

@@ -1195,6 +1195,22 @@ int GetMonitorPhysicalHeight(int monitor)
return 0;
}
int GetMonitorRefreshRate(int monitor)
{
#if defined(PLATFORM_DESKTOP)
int monitorCount;
GLFWmonitor **monitors = glfwGetMonitors(&monitorCount);
if ((monitor >= 0) && (monitor < monitorCount))
{
const GLFWvidmode *vidmode = glfwGetVideoMode(monitors[monitor]);
return vidmode->refreshRate;
}
else TRACELOG(LOG_WARNING, "GLFW: Failed to find selected monitor");
#endif
return 0;
}
// Get window position XY on monitor
Vector2 GetWindowPosition(void)
{