view TaskManager/Test/test_render/viewerSDL.h @ 186:06cdf8baa989 draft

fix
author gongo@localhost.localdomain
date Tue, 06 Jan 2009 16:18:37 +0900
parents 028ffc9c0375
children b3fb0013e6b2
line wrap: on
line source

#ifndef INCLUDED_VIEWER_SDL
#define INCLUDED_VIEWER_SDL

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

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

    SDL_Surface *screen;
    SDL_Surface *bitmap;

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

#endif