IMGUI API change for Text display

This commit is contained in:
Bruno Herbelin
2022-03-19 16:46:59 +01:00
parent f49d94948d
commit 5853495125
3 changed files with 12 additions and 12 deletions

View File

@@ -166,7 +166,7 @@ void ImGuiVisitor::visit(Scene &n)
void ImGuiVisitor::visit(Primitive &n)
{
ImGui::PushID(std::to_string(n.id()).c_str());
ImGui::Text("Primitive %d");
ImGui::Text("Primitive");
n.shader()->accept(*this);