Home
last modified time | relevance | path

Searched refs:SDL_WINDOW_RESIZABLE (Results 1 – 24 of 24) sorted by relevance

/AliOS-Things-master/components/SDL2/src/video/nacl/
A DSDL_naclwindow.c49 window->flags &= ~SDL_WINDOW_RESIZABLE; /* window is NEVER resizeable */ in NACL_CreateWindow()
/AliOS-Things-master/components/SDL2/src/video/haiku/
A DSDL_bwindow.cc62 if(!(window->flags & SDL_WINDOW_RESIZABLE)) { in _InitWindow()
104 window->flags |= SDL_WINDOW_RESIZABLE; in HAIKU_CreateWindowFrom()
/AliOS-Things-master/components/SDL2/test/
A Dtestdrawchessboard.c115 …w("Chess Board", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, SDL_WINDOW_RESIZABLE); in main()
A Dteststreaming.c155 SDL_WINDOW_RESIZABLE); in main()
A Dtesthittesting.c68 …INDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 640, 480, SDL_WINDOW_BORDERLESS | SDL_WINDOW_RESIZABLE); in main()
A Dtestgles.c157 state->window_flags |= SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_BORDERLESS; in main()
A Dtestoverlay2.c337 SDL_WINDOW_RESIZABLE); in main()
A Dtestgles2.c529 state->window_flags |= SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_BORDERLESS; in main()
A Dtestautomation_video.c37 flags = SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE | SDL_WINDOW_BORDERLESS; in _createVideoSuiteTestWindow()
293 flags = SDL_WINDOW_RESIZABLE; in video_createWindowVariousFlags()
/AliOS-Things-master/components/SDL2/src/video/android/
A DSDL_androidwindow.c53 …Android_JNI_SetOrientation(window->w, window->h, window->flags & SDL_WINDOW_RESIZABLE, SDL_GetHint… in Android_CreateWindow()
/AliOS-Things-master/components/SDL2/src/video/directfb/
A DSDL_DirectFB_window.c108 if (window->flags & SDL_WINDOW_RESIZABLE) { in DirectFB_CreateWindow()
375 if (!(window->flags & SDL_WINDOW_RESIZABLE)) in DirectFB_RestoreWindow()
/AliOS-Things-master/components/SDL2/src/video/windows/
A DSDL_windowswindow.c98 if (window->flags & SDL_WINDOW_RESIZABLE) { in GetWindowStyle()
262 window->flags |= SDL_WINDOW_RESIZABLE; in SetupWindowData()
264 window->flags &= ~SDL_WINDOW_RESIZABLE; in SetupWindowData()
A DSDL_windowsevents.c840 if (SDL_GetWindowFlags(data->window) & SDL_WINDOW_RESIZABLE) { in WIN_WindowProc()
1065 if (!(window_flags & SDL_WINDOW_RESIZABLE)) { in WIN_WindowProc()
/AliOS-Things-master/components/SDL2/src/video/emscripten/
A DSDL_emscriptenvideo.c234 if ((window->flags & SDL_WINDOW_RESIZABLE) && wdata->external_size) { in Emscripten_CreateWindow()
A DSDL_emscriptenevents.c644 if(window_data->window->flags & SDL_WINDOW_RESIZABLE) in Emscripten_HandleResize()
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11window.c546 if (!(window->flags & SDL_WINDOW_RESIZABLE)) { in X11_CreateWindow()
855 if (window->flags & SDL_WINDOW_RESIZABLE) { in X11_SetWindowMinimumSize()
884 if (window->flags & SDL_WINDOW_RESIZABLE) { in X11_SetWindowMaximumSize()
924 if (!(window->flags & SDL_WINDOW_RESIZABLE)) { in X11_SetWindowSize()
1271 if (!(window->flags & SDL_WINDOW_RESIZABLE)) { in X11_SetWindowFullscreenViaWM()
/AliOS-Things-master/components/SDL2/src/video/wayland/
A DSDL_waylandwindow.c72 if ((window->flags & SDL_WINDOW_RESIZABLE)) { in handle_configure_wl_shell_surface()
179 if ((window->flags & SDL_WINDOW_RESIZABLE)) { in handle_configure_zxdg_toplevel()
289 if ((window->flags & SDL_WINDOW_RESIZABLE)) { in handle_configure_xdg_toplevel()
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_shape.c36 …,h,(flags | SDL_WINDOW_BORDERLESS) & (~SDL_WINDOW_FULLSCREEN) & (~SDL_WINDOW_RESIZABLE) /* & (~SDL… in SDL_CreateShapedWindow()
A DSDL_video.c1372 …(SDL_WINDOW_OPENGL | SDL_WINDOW_BORDERLESS | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI | SDL…
2032 const int have = ((window->flags & SDL_WINDOW_RESIZABLE) != 0); in SDL_SetWindowResizable()
2035 window->flags |= SDL_WINDOW_RESIZABLE; in SDL_SetWindowResizable()
2037 window->flags &= ~SDL_WINDOW_RESIZABLE; in SDL_SetWindowResizable()
/AliOS-Things-master/components/SDL2/include/
A DSDL_video.h104 SDL_WINDOW_RESIZABLE = 0x00000020, /**< window can be resized */ enumerator
/AliOS-Things-master/components/SDL2/src/video/cocoa/
A DSDL_cocoawindow.m90 } else if ((window->flags & SDL_WINDOW_RESIZABLE) == 0) {
274 if (window->flags & SDL_WINDOW_RESIZABLE) {
823 if (window->flags & SDL_WINDOW_RESIZABLE) {
1410 window->flags |= SDL_WINDOW_RESIZABLE;
1412 window->flags &= ~SDL_WINDOW_RESIZABLE;
1417 if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
1497 if (window->flags & SDL_WINDOW_RESIZABLE) {
1779 } else if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
/AliOS-Things-master/components/SDL2/src/test/
A DSDL_test_common.c403 state->window_flags |= SDL_WINDOW_RESIZABLE; in SDLTest_CommonArg()
1062 if (!(state->window_flags & SDL_WINDOW_RESIZABLE) && in SDLTest_CommonInit()
1075 if ((state->window_flags & (SDL_WINDOW_RESIZABLE|SDL_WINDOW_BORDERLESS)) == in SDLTest_CommonInit()
1076 (SDL_WINDOW_RESIZABLE|SDL_WINDOW_BORDERLESS)) { in SDLTest_CommonInit()
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitwindow.m111 window->flags &= ~SDL_WINDOW_RESIZABLE; /* window is NEVER resizable */
429 if (orientationMask == 0 && (window->flags & SDL_WINDOW_RESIZABLE)) {
/AliOS-Things-master/components/SDL2/src/video/winrt/
A DSDL_winrtvideo.cpp647 SDL_WINDOW_RESIZABLE; in WINRT_CreateWindow()

Completed in 42 milliseconds