annotate Renderer/Engine/viewerFB.h @ 1002:c79651141045

many changes.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Sun, 24 Oct 2010 19:00:47 +0900
parents bed529c55eda
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
1 #ifndef INCLUDED_VIEWER_FB
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
2 #define INCLUDED_VIEWER_FB
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
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
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
5 #include "ViewerDevice.h"
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
6
728
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
7 class ViewerFB : public ViewerDevice {
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
8 public:
728
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
9 ViewerFB(TaskManager *manager) {};
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
10 ViewerFB();
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
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
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
13
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
14 /* override function */
728
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
15 Uint32 *video_init(TaskManager *manager, int bpp, int width, int height);
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
16 void clean_pixels(void);
728
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
17 void clear_screen();
4f77768d7a7f add Engine/ViewerDevice , SgRootChange not work
aaa
parents: 507
diff changeset
18 void free_device();
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
19 };
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
20
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
21 #endif