| 78 | return 0; // flag for packages manager |
| 79 | } |
| 80 | int AppDelegate::applicationGetRefreshRate() |
| 81 | { |
| 82 | #if (AX_TARGET_PLATFORM == AX_PLATFORM_WIN32) || (AX_TARGET_PLATFORM == AX_PLATFORM_LINUX) |
| 83 | auto mode = glfwGetVideoMode(glfwGetPrimaryMonitor()); |
| 84 | return mode->refreshRate; |
| 85 | #else |
| 86 | return 60; |
| 87 | #endif |
| 88 | } |
| 89 | |
| 90 | |
| 91 | static void setupDesignResolution(GLView* glView) |
nothing calls this directly
no outgoing calls
no test coverage detected