view Renderer/test_render/viewerSDL.h @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900
parents
children
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