summaryrefslogtreecommitdiff
path: root/shell/video/sdl/video_blit.h
blob: 08528e19683241b5505ea06c9b255b95b2886c87 (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 sdl_screen->w
#define HOST_HEIGHT_RESOLUTION sdl_screen->h

#define BACKBUFFER_WIDTH_RESOLUTION backbuffer->w
#define BACKBUFFER_HEIGHT_RESOLUTION backbuffer->h

extern SDL_Surface *sdl_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