Mercurial > hg > Game > Cerium
annotate Renderer/test_render/viewerSDL.h @ 327:c8edba9cabb7 draft
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
author | aaa |
---|---|
date | Fri, 12 Jun 2009 02:07:06 +0900 |
parents | 15bfacccde99 |
children |
rev | line source |
---|---|
283 | 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 |