comparison render.h @ 33:2e15fa26fe58

Add support for simple resolution scaling
author Mike Pavone <pavone@retrodev.com>
date Sat, 08 Dec 2012 22:07:25 -0800
parents f664eeb55cb4
children 3fc57e1a2c56
comparison
equal deleted inserted replaced
32:8602ad493794 33:2e15fa26fe58
1 #ifndef RENDER_SDL_H_ 1 #ifndef RENDER_SDL_H_
2 #define RENDER_SDL_H_ 2 #define RENDER_SDL_H_
3 3
4 #include "vdp.h" 4 #include "vdp.h"
5 void render_init(); 5 void render_init(int width, int height);
6 void render_context(vdp_context * context); 6 void render_context(vdp_context * context);
7 void render_wait_quit(); 7 void render_wait_quit();
8 8
9 #endif //RENDER_SDL_H_ 9 #endif //RENDER_SDL_H_
10 10