Home
last modified time | relevance | path

Searched refs:SDL_WINDOW_ALLOW_HIGHDPI (Results 1 – 25 of 25) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/video/emscripten/
DSDL_emscriptenvideo.c199 if (window->flags & SDL_WINDOW_ALLOW_HIGHDPI) { in Emscripten_CreateWindow()
310 } else if(window->flags & SDL_WINDOW_ALLOW_HIGHDPI) { in Emscripten_SetWindowFullscreen()
/third_party/flutter/skia/third_party/externals/sdl/Xcode-iOS/Demos/src/
Drectangles.c60 window = SDL_CreateWindow(NULL, 0, 0, 320, 480, SDL_WINDOW_ALLOW_HIGHDPI); in main()
Dtouch.c93 … window = SDL_CreateWindow(NULL, 0, 0, 320, 480, SDL_WINDOW_BORDERLESS | SDL_WINDOW_ALLOW_HIGHDPI); in main()
Dhappy.c146 … window = SDL_CreateWindow(NULL, 0, 0, 320, 480, SDL_WINDOW_FULLSCREEN | SDL_WINDOW_ALLOW_HIGHDPI); in main()
Daccelerometer.c172 … window = SDL_CreateWindow(NULL, 0, 0, 320, 480, SDL_WINDOW_FULLSCREEN | SDL_WINDOW_ALLOW_HIGHDPI); in main()
Dkeyboard.c246 window = SDL_CreateWindow("iPhone keyboard test", 0, 0, 320, 480, SDL_WINDOW_ALLOW_HIGHDPI); in main()
Dmixer.c285 … window = SDL_CreateWindow(NULL, 0, 0, 320, 480, SDL_WINDOW_BORDERLESS | SDL_WINDOW_ALLOW_HIGHDPI); in main()
Dfireworks.c396 … SDL_WINDOW_OPENGL | SDL_WINDOW_BORDERLESS | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/skia/third_party/externals/imgui/examples/example_sdl_opengl2/
Dmain.cpp35 …dow_flags = (SDL_WindowFlags)(SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/skia/third_party/externals/imgui/examples/example_sdl_sdlrenderer/
Dmain.cpp33 …dow_flags = (SDL_WindowFlags)(SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_opengl3/
Dmain.cpp51 …dow_flags = (SDL_WindowFlags)(SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/skia/third_party/externals/imgui/examples/example_sdl_opengl3/
Dmain.cpp57 …dow_flags = (SDL_WindowFlags)(SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/skia/third_party/externals/imgui/examples/example_sdl_directx11/
Dmain.cpp39 … SDL_WindowFlags window_flags = (SDL_WindowFlags)(SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/flutter/skia/example/
DSkiaSDLExample.cpp122 SDL_WINDOW_ALLOW_HIGHDPI;
/third_party/flutter/skia/tools/sk_app/ios/
DWindow_ios.cpp61 uint32_t windowFlags = SDL_WINDOW_OPENGL | SDL_WINDOW_FULLSCREEN | SDL_WINDOW_ALLOW_HIGHDPI; in initWindow()
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_video.h113SDL_WINDOW_ALLOW_HIGHDPI = 0x00002000, /**< window should be created in high-DPI mode if supp… enumerator
/third_party/flutter/skia/third_party/externals/sdl/
DWhatsNew.txt137 * The SDL_WINDOW_ALLOW_HIGHDPI window flag now enables high-dpi support, and SDL_GL_GetDrawableSize…
241 …Create your window with the SDL_WINDOW_ALLOW_HIGHDPI flag, and then use SDL_GL_GetDrawableSize() t…
/third_party/skia/third_party/externals/imgui/examples/example_sdl_metal/
Dmain.mm55 …WPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 720, SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
/third_party/flutter/skia/third_party/externals/sdl/src/video/uikit/
DSDL_uikitopengles.m166 if (window->flags & SDL_WINDOW_ALLOW_HIGHDPI) {
/third_party/skia/third_party/externals/imgui/examples/example_sdl_vulkan/
Dmain.cpp352 …dow_flags = (SDL_WindowFlags)(SDL_WINDOW_VULKAN | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI); in main()
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_video.c1307 …(SDL_WINDOW_OPENGL | SDL_WINDOW_BORDERLESS | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI | SDL…
1379 if (flags & SDL_WINDOW_ALLOW_HIGHDPI) { in SDL_CreateWindow()
1381 flags &= ~SDL_WINDOW_ALLOW_HIGHDPI; in SDL_CreateWindow()
/third_party/flutter/skia/third_party/externals/sdl/docs/
DREADME-ios.md74 Retina/high-dpi capable devices. Use the SDL_WINDOW_ALLOW_HIGHDPI flag when
/third_party/flutter/skia/third_party/externals/sdl/src/test/
DSDL_test_common.c198 state->window_flags |= SDL_WINDOW_ALLOW_HIGHDPI; in SDLTest_CommonArg()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoawindow.m1269 if (window->flags & SDL_WINDOW_ALLOW_HIGHDPI) {
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt1651 - Examples: SDL: Using the SDL_WINDOW_ALLOW_HIGHDPI flag. (#2306, #1676) [@rasky]