Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/viewerFB.h @ 728:4f77768d7a7f
add Engine/ViewerDevice , SgRootChange not work
author | aaa |
---|---|
date | Sat, 19 Dec 2009 20:32:02 +0900 |
parents | 735f76483bb2 |
children | bed529c55eda |
rev | line source |
---|---|
283 | 1 #ifndef INCLUDED_VIEWER_FB |
2 #define INCLUDED_VIEWER_FB | |
3 | |
728 | 4 #include "ViewerDevice.h" |
283 | 5 |
728 | 6 class ViewerFB : public ViewerDevice { |
283 | 7 public: |
728 | 8 ViewerFB(TaskManager *manager) {}; |
9 ViewerFB(); | |
10 virtual ~ViewerFB(); | |
283 | 11 |
12 /* override function */ | |
728 | 13 Uint32 *video_init(TaskManager *manager, int bpp, int width, int height); |
283 | 14 void clean_pixels(void); |
728 | 15 void clear_screen(); |
16 void free_device(); | |
283 | 17 }; |
18 | |
19 #endif |