view TaskManager/Test/test_render/viewerFB.h @ 284:fbc78e36398b draft

change files
author koba@localhost.localdomain
date Fri, 05 Jun 2009 17:07:35 +0900 (2009-06-05)
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