Searched refs:SetWindowSize (Results 1 - 9 of 9) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_memory_editor.h | 205 ImGui::SetWindowSize(ImVec2(s.WindowWidth, ImGui::GetWindowSize().y));
|
| H A D | imgui.h | 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. 284 IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.
|
| H A D | imgui_demo.cpp | 3849 if (ImGui::Button("200x200")) { ImGui::SetWindowSize(ImVec2(200, 200)); } ImGui::SameLine(); 3850 if (ImGui::Button("500x500")) { ImGui::SetWindowSize(ImVec2(500, 500)); } ImGui::SameLine(); 3851 if (ImGui::Button("800x200")) { ImGui::SetWindowSize(ImVec2(800, 200)); }
|
| H A D | imgui_internal.h | 1337 IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond);
|
| H A D | imgui.cpp | 4956 SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); 6083 void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) function in class:ImGui 6115 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) function in class:ImGui 6117 SetWindowSize(GImGui->CurrentWindow, size, cond); 6120 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) function in class:ImGui 6123 SetWindowSize(window, size, cond);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_memory_editor.h | 207 ImGui::SetWindowSize(ImVec2(s.WindowWidth, ImGui::GetWindowSize().y));
|
| H A D | imgui.h | 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. 284 IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.
|
| H A D | imgui_internal.h | 1337 IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond);
|
| H A D | imgui.cpp | 4956 SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); 6083 void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) function in class:ImGui 6115 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) function in class:ImGui 6117 SetWindowSize(GImGui->CurrentWindow, size, cond); 6120 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) function in class:ImGui 6123 SetWindowSize(window, size, cond);
|
Completed in 65 milliseconds