| 904 | } |
| 905 | |
| 906 | SDL_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 | } |
| 915 | SDL_Renderer* SDL_CreateRenderer(SDL_Window* window, const char* name) |
| 916 | { |
| 917 | (void)name; |
no outgoing calls
no test coverage detected