1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Implemented vsync OS functions for OS X

This commit is contained in:
Marcelo Fernandez
2017-10-23 12:05:42 -03:00
parent b0c6213577
commit 5cf2fc3a5f
2 changed files with 20 additions and 0 deletions

View File

@@ -212,6 +212,9 @@ public:
virtual void set_borderless_window(int p_borderless);
virtual bool get_borderless_window();
virtual void set_use_vsync(bool p_enable);
virtual bool is_vsync_enabled() const;
void run();
void set_mouse_mode(MouseMode p_mode);

View File

@@ -1810,6 +1810,23 @@ Error OS_OSX::move_path_to_trash(String p_dir) {
return OK;
}
void OS_OSX::set_use_vsync(bool p_enable) {
CGLContextObj ctx = CGLGetCurrentContext();
if (ctx) {
GLint swapInterval = p_enable ? 1 : 0;
CGLSetParameter(ctx, kCGLCPSwapInterval, &swapInterval);
}
}
bool OS_OSX::is_vsync_enabled() const {
GLint swapInterval = 0;
CGLContextObj ctx = CGLGetCurrentContext();
if (ctx) {
CGLGetParameter(ctx, kCGLCPSwapInterval, &swapInterval);
}
return swapInterval ? true : false;
}
OS_OSX *OS_OSX::singleton = NULL;
OS_OSX::OS_OSX() {