Mercurial > hg > Game > Cerium
annotate Renderer/Engine/viewerFB.h @ 751:1666dba6f6d9 draft
rendering, move_coll parallel running
author | hiroki@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Tue, 26 Jan 2010 16:18:24 +0900 |
parents | 18d31d18a6b2 |
children | b662e9dd26b0 |
rev | line source |
---|---|
283 | 1 #ifndef INCLUDED_VIEWER_FB |
2 #define INCLUDED_VIEWER_FB | |
3 | |
747 | 4 #include "ViewerDevice.h" |
283 | 5 |
747 | 6 class ViewerFB : public ViewerDevice { |
283 | 7 public: |
747 | 8 ViewerFB(TaskManager *manager) {}; |
9 ViewerFB(); | |
10 virtual ~ViewerFB(); | |
283 | 11 |
12 /* override function */ | |
747 | 13 Uint32 *video_init(TaskManager *manager, int bpp, int width, int height); |
283 | 14 void clean_pixels(void); |
747 | 15 void clear_screen(); |
16 void free_device(); | |
283 | 17 }; |
18 | |
19 #endif |