summaryrefslogtreecommitdiff
path: root/drivers/gl_context
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gl_context')
-rw-r--r--drivers/gl_context/context_gl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gl_context/context_gl.h b/drivers/gl_context/context_gl.h
index 1ea3662ada..fd3bbee5de 100644
--- a/drivers/gl_context/context_gl.h
+++ b/drivers/gl_context/context_gl.h
@@ -52,7 +52,11 @@ public:
virtual void swap_buffers()=0;
virtual Error initialize()=0;
-
+
+ virtual void set_use_vsync(bool p_use)=0;
+ virtual bool is_using_vsync() const=0;
+
+
ContextGL();