Last change
on this file since 105 was
105,
checked in by sam, 12 years ago
|
Create a helper class for easy scene setup. Highly reduces the number
of includes in a few source files.
|
-
Property svn:keywords set to
Id
|
File size:
359 bytes
|
Line | |
---|
1 | // |
---|
2 | // Deus Hax (working title) |
---|
3 | // Copyright (c) 2010 Sam Hocevar <sam@hocevar.net> |
---|
4 | // |
---|
5 | |
---|
6 | // |
---|
7 | // The Video interface |
---|
8 | // ------------------- |
---|
9 | // Helper GL functions to set up the scene. |
---|
10 | // |
---|
11 | |
---|
12 | #if !defined __DH_VIDEO_H__ |
---|
13 | #define __DH_VIDEO_H__ |
---|
14 | |
---|
15 | class Video |
---|
16 | { |
---|
17 | public: |
---|
18 | static void Setup(int width, int height); |
---|
19 | static void Clear(); |
---|
20 | }; |
---|
21 | |
---|
22 | #endif // __DH_VIDEO_H__ |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.