enable dpi/display scaling/display density awareness

This commit is contained in:
Green Sky 2024-06-16 11:19:54 +02:00
parent 5356e59088
commit a47d607a8d
No known key found for this signature in database

View File

@ -11,6 +11,7 @@
#include "./sys_check.hpp" #include "./sys_check.hpp"
#include "./start_screen.hpp" #include "./start_screen.hpp"
#include "SDL3/SDL_video.h"
#include <filesystem> #include <filesystem>
#include <memory> #include <memory>
@ -51,7 +52,7 @@ int main(int argc, char** argv) {
// more RAII // more RAII
std::unique_ptr<SDL_Window, decltype(&SDL_DestroyWindow)> window { std::unique_ptr<SDL_Window, decltype(&SDL_DestroyWindow)> window {
SDL_CreateWindow("tomato", 1280, 720, SDL_WINDOW_RESIZABLE), SDL_CreateWindow("tomato", 1280, 720, SDL_WINDOW_RESIZABLE | SDL_WINDOW_HIGH_PIXEL_DENSITY),
&SDL_DestroyWindow &SDL_DestroyWindow
}; };