view TaskManager/Test/test_render/viewerFB.h @ 222:0351818cf0fe draft

fix
author gongo@localhost.localdomain
date Tue, 10 Feb 2009 13:09:52 +0900
parents 028ffc9c0375
children b3fb0013e6b2
line wrap: on
line source

#ifndef INCLUDED_VIEWER_FB
#define INCLUDED_VIEWER_FB

#ifndef INCLUDED_VIEWER
#  include "viewer.h"
#endif

class ViewerFB : public Viewer {
public:
    ViewerFB(int bpp, int width, int height, int spenum)
	:Viewer(bpp, width, height, spenum) {}

    /* override function */
    void video_init(void);
    void clean_pixels(void);
};

#endif