mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-11 18:41:14 +00:00
* Extended full screen capabilities for Web port * Add Emscripten patches * Add back newline
12 lines
347 B
C
12 lines
347 B
C
#ifndef EMSCRIPTEN_WINDOW_H
|
|
#define EMSCRIPTEN_WINDOW_H
|
|
|
|
#include <SDL3/SDL.h>
|
|
|
|
void Emscripten_SetupWindow(SDL_Window* p_window);
|
|
void Emscripten_SetScaleAspect(bool p_scaleAspect);
|
|
void Emscripten_SetOriginalResolution(bool p_originalResolution);
|
|
void Emscripten_ConvertEventToRenderCoordinates(SDL_Event* event);
|
|
|
|
#endif // EMSCRIPTEN_WINDOW_H
|