view old/simple_render/test/LoadTexture/viewer.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_render/test/LoadTexture/viewer.h@312b535f121e
children
line wrap: on
line source

#include <SDL.h>

#ifndef INCLUDED_VIEWER
#define INCLUDED_VIEWER

#include "TaskManager.h"

class Viewer {
public:
	
	int width;
	int height;
	int bpp;
	SDL_Surface *screen;
	Uint32 *pixels;

	Viewer(int b, int w, int h);
	void sdl_init();
	void run_init();

};

#endif