Skip to content

Commit 88d4827

Browse files
authored
Update FAQ.md for SDL3 (#8480)
1 parent 3c3d943 commit 88d4827

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/FAQ.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,8 @@ Please note that if you are not using multi-viewports with multi-monitors using
562562
563563
On Windows, in addition to scaling the font size (make sure to round to an integer) and using `style.ScaleAllSizes()`, you will need to inform Windows that your application is DPI aware. If this is not done, Windows will scale the application window and the UI text will be blurry. Potential solutions to indicate DPI awareness on Windows are:
564564
565-
- For SDL: the flag `SDL_WINDOW_ALLOW_HIGHDPI` needs to be passed to `SDL_CreateWindow()``.
565+
- For SDL2: the flag `SDL_WINDOW_ALLOW_HIGHDPI` needs to be passed to `SDL_CreateWindow()`.
566+
- For SDL3: the flag `SDL_WINDOW_HIGH_PIXEL_DENSITY` needs to be passed to `SDL_CreateWindow()`.
566567
- For GLFW: this is done automatically.
567568
- For other Windows projects with other backends, or wrapper projects:
568569
- We provide a `ImGui_ImplWin32_EnableDpiAwareness()` helper method in the Win32 backend.

0 commit comments

Comments
 (0)