/third_party/glfw/src/ |
H A D | monitor.c | 62 return fm->refreshRate - sm->refreshRate; in compareVideoModes() 252 if (desired->refreshRate != GLFW_DONT_CARE) in _glfwChooseVideoMode() 253 rateDiff = abs(current->refreshRate - desired->refreshRate); in _glfwChooseVideoMode() 255 rateDiff = UINT_MAX - current->refreshRate; in _glfwChooseVideoMode()
|
H A D | window.c | 226 window->videoMode.refreshRate = _glfw.hints.refreshRate; in glfwCreateWindow() 292 _glfw.hints.refreshRate = GLFW_DONT_CARE; in glfwDefaultWindowHints() 432 _glfw.hints.refreshRate = value; in glfwWindowHint() 1003 int refreshRate) in glfwSetWindowMonitor() 1022 if (refreshRate < 0 && refreshRate != GLFW_DONT_CARE) in glfwSetWindowMonitor() 1026 refreshRate); in glfwSetWindowMonitor() 1032 window->videoMode.refreshRate = refreshRate; in glfwSetWindowMonitor() 999 glfwSetWindowMonitor(GLFWwindow* wh, GLFWmonitor* mh, int xpos, int ypos, int width, int height, int refreshRate) glfwSetWindowMonitor() argument [all...] |
H A D | win32_monitor.c | 268 dm.dmDisplayFrequency = best->refreshRate; in _glfwSetVideoModeWin32() 424 mode.refreshRate = dm.dmDisplayFrequency; in _glfwGetVideoModesWin32() 488 mode->refreshRate = dm.dmDisplayFrequency; in _glfwGetVideoModeWin32()
|
H A D | null_monitor.c | 44 mode.refreshRate = 60; in getVideoMode()
|
H A D | wl_monitor.c | 78 mode.refreshRate = (int) round(refresh / 1000.0); in outputHandleMode()
|
H A D | x11_monitor.c | 87 mode.refreshRate = calculateRefreshRate(mi); in vidmodeFromModeInfo() 525 mode->refreshRate = 0; in _glfwGetVideoModeX11()
|
H A D | cocoa_platform.h | 237 void _glfwSetWindowMonitorCocoa(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
H A D | null_platform.h | 226 void _glfwSetWindowMonitorNull(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
H A D | null_window.c | 193 int refreshRate) in _glfwSetWindowMonitorNull() 189 _glfwSetWindowMonitorNull(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate) _glfwSetWindowMonitorNull() argument
|
H A D | win32_platform.h | 565 void _glfwSetWindowMonitorWin32(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
H A D | internal.h | 778 int refreshRate; member
|
H A D | wl_platform.h | 633 void _glfwSetWindowMonitorWayland(_GLFWwindow* window, _GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
/third_party/glfw/tests/ |
H A D | iconify.c | 115 mode->refreshRate); in key_callback() 174 glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate); in create_window()
|
H A D | monitors.c | 71 mode->refreshRate); in format_mode() 148 glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate); in test_modes()
|
H A D | tearing.c | 148 mode->refreshRate); in key_callback()
|
H A D | events.c | 587 glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate); in main()
|
H A D | cursor.c | 318 mode->refreshRate); in key_callback()
|
H A D | window.c | 149 mode->refreshRate); in main()
|
/third_party/skia/third_party/externals/imgui/examples/libs/glfw/include/GLFW/ |
H A D | glfw3.h | 1148 int refreshRate; member 2430 * @param[in] refreshRate The desired refresh rate, in Hz, of the video mode. 2446 GLFWAPI void glfwSetWindowMonitor(GLFWwindow* window, GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
/third_party/skia/third_party/externals/swiftshader/src/WSI/ |
H A D | DisplaySurfaceKHR.cpp | 40 pProperties->parameters.refreshRate = connector->modes[0].vrefresh * 1000; in GetDisplayModeProperties()
|
/third_party/glfw/include/GLFW/ |
H A D | glfw3.h | 2046 int refreshRate; member 4051 * @param[in] refreshRate The desired refresh rate, in Hz, of the video mode, 4075 GLFWAPI void glfwSetWindowMonitor(GLFWwindow* window, GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
|
/third_party/lz4/programs/ |
H A D | bench.c | 92 if ((clock() - g_time > refreshRate) || (g_displayLevel>=4)) \ 95 static const clock_t refreshRate = CLOCKS_PER_SEC * 15 / 100; variable
|
H A D | lz4io.c | 98 if ( ((clock() - g_time) > refreshRate) \ 104 static const clock_t refreshRate = CLOCKS_PER_SEC / 6; variable
|
/third_party/glfw/examples/ |
H A D | boing.c | 264 glfwSetWindowMonitor(window, monitor, 0, 0, mode->width, mode->height, mode->refreshRate); in key_callback()
|
/third_party/lz4/tests/ |
H A D | frametest.c | 84 if ((FUZ_GetClockSpan(g_clockTime) > refreshRate) || (displayLevel>=4)) \ 87 static const clock_t refreshRate = CLOCKS_PER_SEC / 6; variable
|