Mercurial > hg > Game > Cerium
annotate Renderer/test_render/viewerSDL.h @ 503:516d5c91d5b4 draft double-linked-task-list
comment
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 11 Oct 2009 19:35:33 +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 |