| 20707 | } |
| 20708 | |
| 20709 | void ImGui::DockBuilderSetNodePos(ImGuiID node_id, ImVec2 pos) |
| 20710 | { |
| 20711 | ImGuiContext& g = *GImGui; |
| 20712 | ImGuiDockNode* node = DockContextFindNodeByID(&g, node_id); |
| 20713 | if (node == NULL) |
| 20714 | return; |
| 20715 | node->Pos = pos; |
| 20716 | node->AuthorityForPos = ImGuiDataAuthority_DockNode; |
| 20717 | } |
| 20718 | |
| 20719 | void ImGui::DockBuilderSetNodeSize(ImGuiID node_id, ImVec2 size) |
| 20720 | { |
nothing calls this directly
no outgoing calls
no test coverage detected