Home
last modified time | relevance | path

Searched refs:SetNextWindowSize (Results 1 - 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp341 ImGui::SetNextWindowSize(ImVec2(550, 680), ImGuiCond_FirstUseEver); in ShowDemoWindow()
6283 ImGui::SetNextWindowSize(ImVec2(520, 600), ImGuiCond_FirstUseEver);
6711 ImGui::SetNextWindowSize(ImVec2(500, 400), ImGuiCond_FirstUseEver);
6740 ImGui::SetNextWindowSize(ImVec2(500, 440), ImGuiCond_FirstUseEver);
6853 ImGui::SetNextWindowSize(ImVec2(430, 450), ImGuiCond_FirstUseEver);
6888 ImGui::SetNextWindowSize(ImVec2(520, 600), ImGuiCond_FirstUseEver);
7082 ImGui::SetNextWindowSize(use_work_area ? viewport->WorkSize : viewport->Size);
H A Dimgui.h365 IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()
372 IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0, 0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.
492 IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().
H A Dimgui.cpp473 - Begin() [old 5 args version] -> use Begin() [3 args], use SetNextWindowSize() SetNextWindowBgAlpha() if needed
569 - 2017/10/17 (1.52) - marked the old 5-parameters version of Begin() as obsolete (still available). Use SetNextWindowSize()+Begin() instead!
4160 SetNextWindowSize(ImVec2(400, 400), ImGuiCond_FirstUseEver); in NewFrame()
5025 SetNextWindowSize(size); in BeginChildEx()
6005 // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. in Begin()
6977 void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond) in SetNextWindowSize() function in ImGui
H A Dimgui_widgets.cpp6761 SetNextWindowSize(size);
/third_party/skia/tools/viewer/
H A DViewer.cpp1888 ImGui::SetNextWindowSize(ImVec2(400, 400), ImGuiCond_FirstUseEver); in drawImGui()
2734 ImGui::SetNextWindowSize(ImVec2(400, 400), ImGuiCond_FirstUseEver); in drawImGui()
2748 ImGui::SetNextWindowSize(ImVec2(200, 200), ImGuiCond_FirstUseEver); in drawImGui()
/third_party/mesa3d/src/intel/tools/
H A Daubinator_viewer.cpp1090 ImGui::SetNextWindowSize(window->size, ImGuiCond_FirstUseEver); in display_windows()
/third_party/mesa3d/src/imgui/
H A Dimgui.h272 IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()
279 IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.
377 IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().
1508 IMGUI_API bool Begin(const char* name, bool* p_open, const ImVec2& size_on_first_use, float bg_alpha_override = -1.0f, ImGuiWindowFlags flags = 0); // Use SetNextWindowSize(size, ImGuiCond_FirstUseEver) + SetNextWindowBgAlpha() instead.
H A Dimgui.cpp437 - 2017/10/17 (1.52) - marked the old 5-parameters version of Begin() as obsolete (still available). Use SetNextWindowSize()+Begin() instead!
3534 SetNextWindowSize(ImVec2(400,400), ImGuiCond_FirstUseEver); in NewFrame()
4337 SetNextWindowSize(size); in BeginChildEx()
5069 // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. in Begin()
5487 // Old Begin() API with 5 parameters, avoid calling this version directly! Use SetNextWindowSize()/SetNextWindowBgAlpha() + Begin() instead.
5493 SetNextWindowSize(size_first_use, ImGuiCond_FirstUseEver); in Begin()
6187 void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond) in SetNextWindowSize() function in ImGui
H A Dimgui_widgets.cpp5494 SetNextWindowSize(ImVec2(g.IO.DisplaySize.x, g.NextWindowData.MenuBarOffsetMinVal.y + g.FontBaseSize + g.Style.FramePadding.y));
/third_party/mesa3d/src/vulkan/overlay-layer/
H A Doverlay.cpp904 ImGui::SetNextWindowSize(data->window_size, ImGuiCond_Always); in position_layer()

Completed in 154 milliseconds