aboutsummaryrefslogtreecommitdiff
path: root/shell/video/sdl/video_blit.h
blob: ea28ba92f9b3c1e3765e7b48926da8e5fb4b8e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef VIDEO_BLIT_H
#define VIDEO_BLIT_H

#include <SDL/SDL.h>

#define HOST_WIDTH_RESOLUTION 320
#define HOST_HEIGHT_RESOLUTION 240

#define INTERNAL_SNES_WIDTH_NTSC 256
#define INTERNAL_SNES_HEIGHT_NTSC 224

extern SDL_Surface *screen, *backbuffer;

extern uint32_t width_of_surface;
extern uint32_t* Draw_to_Virtual_Screen;

void Init_Video();
void Set_Video_Menu();
void Set_Video_InGame();
void Video_Close();
void Update_Video_Menu();
void Update_Video_Ingame();

#endif