update folders

This commit is contained in:
2023-08-05 22:45:06 +03:00
parent c0aaec4c08
commit c2ef252c14
136 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#define WIDTH 320
#define HEIGHT 192
#define SCALE 2
SDL_Window * window = SDL_CreateWindow("SDL 2x scale",
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, WIDTH, HEIGHT, 0);
SDL_Renderer * renderer = SDL_CreateRenderer(window, -1, 0);
SDL_SetWindowSize(window, WIDTH * SCALE, HEIGHT * SCALE);
SDL_RenderSetScale(renderer, SCALE, SCALE);