SourceCore to isolate core properties of a source

This commit is contained in:
brunoherbelin
2021-04-17 14:40:00 +02:00
parent c90bec36c5
commit cc752050f8
5 changed files with 20 additions and 98 deletions

View File

@@ -395,7 +395,6 @@ void ImGuiVisitor::visit(ImageProcessingShader &n)
ImGui::Spacing();
}
void ImGuiVisitor::visit (Source& s)
{
ImGui::PushID(std::to_string(s.id()).c_str());
@@ -539,10 +538,6 @@ void ImGuiVisitor::visit (Source& s)
s.processingShader()->accept(*this);
}
// geometry direct control for DEBUG
// s.groupNode(View::GEOMETRY)->accept(*this);
// s.groupNode((View::Mode) Settings::application.current_view)->accept(*this);
ImGui::PopID();
}