File: sdlvideo.h

package info (click to toggle)
nestopia 1.49-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,424 kB
  • sloc: cpp: 86,935; xml: 26,956; makefile: 1,515; ansic: 772; sh: 19
file content (19 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _SDLVIDEO_H_
#define _SDLVIDEO_H_

void nstsdl_video_create();
void nstsdl_video_destroy();

dimensions_t nstsdl_video_get_dimensions();
void nstsdl_video_resize();

void nstsdl_video_set_cursor();
void nstsdl_video_set_title(const char *title);

void nstsdl_video_swapbuffers();

void nstsdl_video_toggle_fullscreen();
void nstsdl_video_toggle_filter();
void nstsdl_video_toggle_scale();

#endif