comparison Renderer/test_render/viewerFB.h @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900 (2009-06-05)
parents
children
comparison
equal deleted inserted replaced
282:ef061be0baff 283:55ea4465b1a2
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