diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-01-26 00:55:02 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-01-26 00:55:02 -0800 |
commit | 7046ade2b8c9092381779fa3d902e4650ebc68cf (patch) | |
tree | 63bbcb5eb5a863433a6857932ca3f66d7be67ee0 /render.h | |
parent | 276fa281b51657ab1fc016bcf797d0abace2e1fc (diff) |
Allow toggling full screen mode at runtime. Allow resizing the window in windowed mode. Allow specifying the aspect ratio in the config file.
Diffstat (limited to 'render.h')
-rw-r--r-- | render.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -74,6 +74,7 @@ uint32_t *render_get_framebuffer(uint8_t which, int *pitch); void render_framebuffer_updated(uint8_t which, int width); void render_init(int width, int height, char * title, uint8_t fullscreen); void render_set_video_standard(vid_std std); +void render_toggle_fullscreen(); void render_update_caption(char *title); void render_wait_quit(vdp_context * context); void render_wait_psg(psg_context * context); |