Last change
on this file since 47 was
47,
checked in by sam, 12 years ago
|
The layer name is no longer ignored.
|
-
Property svn:keywords set to
Id
|
File size:
382 bytes
|
Line | |
---|
1 | |
---|
2 | /* |
---|
3 | * The video driver |
---|
4 | */ |
---|
5 | |
---|
6 | #if !defined __DH_VIDEO_H__ |
---|
7 | #define __DH_VIDEO_H__ |
---|
8 | |
---|
9 | class VideoData; |
---|
10 | |
---|
11 | class Video |
---|
12 | { |
---|
13 | public: |
---|
14 | Video(char const *title, int width, int height); |
---|
15 | ~Video(); |
---|
16 | |
---|
17 | int GetWidth() const; |
---|
18 | int GetHeight() const; |
---|
19 | void Clear(); |
---|
20 | void Refresh(float milliseconds); |
---|
21 | void FullScreen(); |
---|
22 | |
---|
23 | private: |
---|
24 | VideoData *data; |
---|
25 | }; |
---|
26 | |
---|
27 | #endif // __DH_VIDEO_H__ |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.