Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/viewerSDL.h @ 186:06cdf8baa989 draft
fix
author | gongo@localhost.localdomain |
---|---|
date | Tue, 06 Jan 2009 16:18:37 +0900 |
parents | 028ffc9c0375 |
children | b3fb0013e6b2 |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_VIEWER_SDL |
2 #define INCLUDED_VIEWER_SDL | |
3 | |
4 #ifndef INCLUDED_VIEWER | |
5 # include "viewer.h" | |
6 #endif | |
7 | |
8 class ViewerSDL : public Viewer { | |
9 public: | |
10 ViewerSDL(int bpp, int width, int height, int spenum) | |
11 :Viewer(bpp, width, height, spenum) {} | |
12 | |
13 SDL_Surface *screen; | |
14 SDL_Surface *bitmap; | |
15 | |
16 /* override function */ | |
17 void video_init(void); | |
18 void clean_pixels(); | |
19 void run_loop(void); | |
20 void run_finish(void); | |
21 }; | |
22 | |
23 #endif |