Searched refs:SetNextWindowSize (Results 1 - 11 of 11) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_demo.cpp | 242 ImGui::SetNextWindowSize(ImVec2(550, 680), ImGuiCond_FirstUseEver); 3177 ImGui::SetNextWindowSize(ImVec2(520,600), ImGuiCond_FirstUseEver); 3580 ImGui::SetNextWindowSize(ImVec2(500, 400), ImGuiCond_FirstUseEver); 3606 ImGui::SetNextWindowSize(ImVec2(500, 440), ImGuiCond_FirstUseEver); 3667 ImGui::SetNextWindowSize(ImVec2(430,450), ImGuiCond_FirstUseEver); 3740 ImGui::SetNextWindowSize(ImVec2(520,600), ImGuiCond_FirstUseEver); 3940 ImGui::SetNextWindowSize(ImVec2(350, 560), ImGuiCond_FirstUseEver);
|
| H A D | imgui.h | 272 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 D | imgui.cpp | 437 - 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); 4337 SetNextWindowSize(size); 5069 // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. 5487 // Old Begin() API with 5 parameters, avoid calling this version directly! Use SetNextWindowSize()/SetNextWindowBgAlpha() + Begin() instead. 5493 SetNextWindowSize(size_first_use, ImGuiCond_FirstUseEver); 6187 void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond) function in class:ImGui
|
| H A D | imgui_widgets.cpp | 5494 SetNextWindowSize(ImVec2(g.IO.DisplaySize.x, g.NextWindowData.MenuBarOffsetMinVal.y + g.FontBaseSize + g.Style.FramePadding.y));
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| H A D | aubinator_viewer.cpp | 1090 ImGui::SetNextWindowSize(window->size, ImGuiCond_FirstUseEver);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| H A D | aubinator_viewer.cpp | 1088 ImGui::SetNextWindowSize(window->size, ImGuiCond_FirstUseEver);
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/overlay-layer/ |
| H A D | overlay.cpp | 672 ImGui::SetNextWindowSize(data->window_size, ImGuiCond_Always);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.h | 272 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 D | imgui.cpp | 437 - 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); 4337 SetNextWindowSize(size); 5069 // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. 5487 // Old Begin() API with 5 parameters, avoid calling this version directly! Use SetNextWindowSize()/SetNextWindowBgAlpha() + Begin() instead. 5493 SetNextWindowSize(size_first_use, ImGuiCond_FirstUseEver); 6187 void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond) function in class:ImGui
|
| H A D | imgui_widgets.cpp | 5494 SetNextWindowSize(ImVec2(g.IO.DisplaySize.x, g.NextWindowData.MenuBarOffsetMinVal.y + g.FontBaseSize + g.Style.FramePadding.y));
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/ |
| H A D | overlay.cpp | 904 ImGui::SetNextWindowSize(data->window_size, ImGuiCond_Always);
|
Completed in 152 milliseconds