Home
last modified time | relevance | path

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

12

/third_party/flutter/skia/third_party/externals/sdl/src/video/haiku/
DSDL_bvideo.cc76 device->SetWindowSize = BE_SetWindowSize; in BE_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/psp/
DSDL_pspvideo.c121 device->SetWindowSize = PSP_SetWindowSize; in PSP_Create()
/third_party/flutter/skia/third_party/externals/sdl/src/video/emscripten/
DSDL_emscriptenvideo.c99 device->SetWindowSize = Emscripten_SetWindowSize; in Emscripten_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/raspberry/
DSDL_rpivideo.c108 device->SetWindowSize = RPI_SetWindowSize; in RPI_Create()
/third_party/flutter/skia/third_party/externals/sdl/src/video/vivante/
DSDL_vivantevideo.c94 device->SetWindowSize = VIVANTE_SetWindowSize; in VIVANTE_Create()
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_sysvideo.h208 void (*SetWindowSize) (_THIS, SDL_Window * window); member
DSDL_video.c1898 if (_this->SetWindowSize) { in SDL_SetWindowSize()
1899 _this->SetWindowSize(_this, window); in SDL_SetWindowSize()
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/
DSDL_mirvideo.c177 device->SetWindowSize = MIR_SetWindowSize; in MIR_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_video.c123 device->SetWindowSize = DirectFB_SetWindowSize; in DirectFB_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/wayland/
DSDL_waylandvideo.c174 device->SetWindowSize = Wayland_SetWindowSize; in Wayland_CreateDevice()
/third_party/skia/tools/viewer/
DSkottieSlide.cpp340 ImGui::SetWindowSize(ImVec2(ui_area.width(), ui_area.height())); in renderUI()
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsvideo.c139 device->SetWindowSize = WIN_SetWindowSize; in WIN_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/
DSDL_cocoavideo.m88 device->SetWindowSize = Cocoa_SetWindowSize;
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11video.c236 device->SetWindowSize = X11_SetWindowSize; in X11_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/video/pandora/
DSDL_pandora.c110 device->SetWindowSize = PND_setwindowsize; in PND_create()
/third_party/flutter/skia/third_party/externals/sdl/src/video/winrt/
DSDL_winrtvideo.cpp144 device->SetWindowSize = WINRT_SetWindowSize; in WINRT_CreateDevice()
/third_party/mesa3d/src/imgui/
Dimgui_memory_editor.h207 ImGui::SetWindowSize(ImVec2(s.WindowWidth, ImGui::GetWindowSize().y));
Dimgui.h279 …IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); …
284 …IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); …
Dimgui.cpp4956 SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); in Begin()
6083 void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) in SetWindowSize() function in ImGui
6115 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) in SetWindowSize() function in ImGui
6117 SetWindowSize(GImGui->CurrentWindow, size, cond); in SetWindowSize()
6120 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) in SetWindowSize() function in ImGui
6123 SetWindowSize(window, size, cond); in SetWindowSize()
Dimgui_internal.h1337 IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond);
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui.h274 …IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); …
279 …IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); …
Dimgui.cpp991 static void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond);
4832 SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); in Begin()
5956 static void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) in SetWindowSize() function
5988 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) in SetWindowSize() function in ImGui
5990 SetWindowSize(GImGui->CurrentWindow, size, cond); in SetWindowSize()
5993 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) in SetWindowSize() function in ImGui
5996 SetWindowSize(window, size, cond); in SetWindowSize()
Dimgui_demo.cpp3745 if (ImGui::Button("200x200")) { ImGui::SetWindowSize(ImVec2(200, 200)); } ImGui::SameLine(); in ShowExampleAppConstrainedResize()
3746 if (ImGui::Button("500x500")) { ImGui::SetWindowSize(ImVec2(500, 500)); } ImGui::SameLine(); in ShowExampleAppConstrainedResize()
3747 if (ImGui::Button("800x200")) { ImGui::SetWindowSize(ImVec2(800, 200)); } in ShowExampleAppConstrainedResize()
/third_party/skia/third_party/externals/imgui/
Dimgui.h372 …IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); …
377 …IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); …
/third_party/skia/samplecode/
DSampleVariableWidthStroker.cpp1311 ImGui::SetWindowSize(ImVec2(uiArea.width(), uiArea.height())); in drawUI()

12