view Renderer/test_render/viewerSDL.h @ 503:516d5c91d5b4 draft double-linked-task-list

comment
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 11 Oct 2009 19:35:33 +0900
parents 15bfacccde99
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