Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-12 14:55:10 +0000
committerStijn Buys <ingar@osirion.org>2008-10-12 14:55:10 +0000
commitb417df720584c101f3799874a0c836a543a8d0a8 (patch)
treefb7105ed662f13753a6ab8d3efb047bad04f2316 /src/client/video.h
parent18383a5fc596bf9546f14d7393ee66c57720b116 (diff)
user interface updates, work-in-progress
Diffstat (limited to 'src/client/video.h')
-rw-r--r--src/client/video.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/client/video.h b/src/client/video.h
index 59939e6..daa136c 100644
--- a/src/client/video.h
+++ b/src/client/video.h
@@ -9,31 +9,28 @@
namespace client {
-/// the client video subsystem
+/// the video subsystem
namespace video
{
- /// initialize the client video subsystem
+ /// initialize the video subsystem
bool init();
- /// shutdown the client video subsystem
+ /// shutdown the video subsystem
void shutdown();
- /// draw the next client video frame
- void frame(float seconds);
-
- /// reset and clear the viewport
- void reset();
-
- /// restart the video subsystem
+ /// re-initialize the video subsystems
+ /** the restart functions performs a full shutdown
+ * and re-initializes the video subsystem
+ */
void restart();
- /// make a screenshot
- void screenshot();
+ /// draw the next client video frame
+ void frame(float seconds);
- /// width of the window in pixels
+ /// width of the application window in pixels
extern int width;
- /// height of the window in pixels
+ /// height of the application window in pixels
extern int height;
} // namespace video