summaryrefslogtreecommitdiff
path: root/core/os/os.h
diff options
context:
space:
mode:
authorMarcelo Fernandez <marcelofg55@gmail.com>2018-03-04 14:18:05 -0300
committerMarcelo Fernandez <marcelofg55@gmail.com>2018-03-04 14:18:05 -0300
commitd780d774aa4630302fddbef0516e3f96beacd7b5 (patch)
tree15f3ee3c64b4882b7d2bf399d8f68755feda2ba3 /core/os/os.h
parente619727e999ecd8e6883330f2c6950cd0624de99 (diff)
Clean and expose get_audio/video_driver_* funcs on OS class
Diffstat (limited to 'core/os/os.h')
-rw-r--r--core/os/os.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/core/os/os.h b/core/os/os.h
index 38e55fa3b7..f8033c2546 100644
--- a/core/os/os.h
+++ b/core/os/os.h
@@ -44,6 +44,11 @@
@author Juan Linietsky <reduzio@gmail.com>
*/
+enum VideoDriver {
+ VIDEO_DRIVER_GLES3,
+ VIDEO_DRIVER_GLES2
+};
+
class OS {
static OS *singleton;
@@ -115,12 +120,6 @@ protected:
RenderThreadMode _render_thread_mode;
// functions used by main to initialize/deintialize the OS
- virtual int get_video_driver_count() const = 0;
- virtual const char *get_video_driver_name(int p_driver) const = 0;
-
- virtual int get_audio_driver_count() const = 0;
- virtual const char *get_audio_driver_name(int p_driver) const = 0;
-
void add_logger(Logger *p_logger);
virtual void initialize_core() = 0;
@@ -175,6 +174,12 @@ public:
virtual VideoMode get_video_mode(int p_screen = 0) const = 0;
virtual void get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen = 0) const = 0;
+ virtual int get_video_driver_count() const;
+ virtual const char *get_video_driver_name(int p_driver) const;
+
+ virtual int get_audio_driver_count() const;
+ virtual const char *get_audio_driver_name(int p_driver) const;
+
virtual int get_screen_count() const { return 1; }
virtual int get_current_screen() const { return 0; }
virtual void set_current_screen(int p_screen) {}