Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/viewerFB.h @ 1039:b9cd0c88b69a
AllExecute speparation.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 07 Dec 2010 23:59:46 +0900 (2010-12-07) |
parents | bed529c55eda |
children |
rev | line source |
---|---|
283 | 1 #ifndef INCLUDED_VIEWER_FB |
2 #define INCLUDED_VIEWER_FB | |
3 | |
895
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
728
diff
changeset
|
4 #include "fb.h" |
728 | 5 #include "ViewerDevice.h" |
283 | 6 |
728 | 7 class ViewerFB : public ViewerDevice { |
283 | 8 public: |
728 | 9 ViewerFB(TaskManager *manager) {}; |
10 ViewerFB(); | |
11 virtual ~ViewerFB(); | |
895
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
728
diff
changeset
|
12 ScreenInfo screen_info ; |
283 | 13 |
14 /* override function */ | |
728 | 15 Uint32 *video_init(TaskManager *manager, int bpp, int width, int height); |
283 | 16 void clean_pixels(void); |
728 | 17 void clear_screen(); |
18 void free_device(); | |
283 | 19 }; |
20 | |
21 #endif |