comparison TaskManager/Test/test_render/viewerFB.h @ 109:5c194c71eca8

Cerium cvs version
author gongo@gendarme.local
date Wed, 12 Nov 2008 17:39:33 +0900
parents
children 25c820b6060e
comparison
equal deleted inserted replaced
108:6f3b3dd3c095 109:5c194c71eca8
1 #ifndef INCLUDED_VIEWER_FB
2 #define INCLUDED_VIEWER_FB
3
4 #ifndef INCLUDED_VIEWER
5 # include "viewer.h"
6 #endif
7
8 class ViewerFB : public Viewer {
9 public:
10 ViewerFB(int bpp, int width, int height, int spenum)
11 :Viewer(bpp, width, height, spenum) {}
12
13 /* override function */
14 void video_init(void);
15 void clean_pixels(void);
16 };
17
18 #endif