blob: 82a5cb6e3ba33a026b78fef583bea7b48d3d4df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef RENDER_SDL_H_
#define RENDER_SDL_H_
#include "vdp.h"
void render_init(int width, int height);
void render_context(vdp_context * context);
void render_wait_quit(vdp_context * context);
int wait_render_frame(vdp_context * context, int frame_limit);
#endif //RENDER_SDL_H_
|