MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / SDL_CreateWindow

Function SDL_CreateWindow

libretro/sdl_stub.cpp:906–914  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

904}
905
906SDL_Window* SDL_CreateWindow(const char* title, int w, int h, SDL_WindowFlags flags)
907{
908 (void)title;
909 g_window.id = g_next_window_id++;
910 g_window.w = (w > 0) ? w : 1920;
911 g_window.h = (h > 0) ? h : 1080;
912 g_window.flags = flags;
913 return &g_window;
914}
915SDL_Renderer* SDL_CreateRenderer(SDL_Window* window, const char* name)
916{
917 (void)name;

Callers 15

create_windowsFunction · 0.85
ensure_windowFunction · 0.85
amiberry_gui_initFunction · 0.85
main.cppFile · 0.85
mainFunction · 0.85
main.cppFile · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected