Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/video.h')
-rw-r--r--src/client/video.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/client/video.h b/src/client/video.h
new file mode 100644
index 0000000..3b126f1
--- /dev/null
+++ b/src/client/video.h
@@ -0,0 +1,30 @@
+/* video.h
+ This file is part of the Osirion project
+*/
+
+#ifndef __INCLUDED_VIDEO_H__
+#define __INCLUDED_VIDEO_H__
+
+
+namespace video
+{
+ /// initialize the video subsystem
+ void init();
+ /// shutdown the video subsystem
+ void shutdown();
+ /// Update the screen state and redraw
+ void draw(float elapsed);
+ /// reset and clear the viewport
+ void reset();
+
+ /// Width of the SDL window in pixels
+ extern int width;
+ /// Height of the SDL window in pixels
+ extern int height;
+ /// True if the video subsystem is initialized
+ extern bool initialized;
+ /// width/height ratio
+ extern float ratio;
+};
+
+#endif // __INCLUDED_VIDEO_H__