New User defined uniforms in Custom shaders

This commit is contained in:
Bruno Herbelin
2024-03-10 11:51:13 +01:00
parent f280d3b64c
commit d5f2b375a6
7 changed files with 164 additions and 27 deletions

View File

@@ -1377,6 +1377,12 @@ void ImGuiVisitor::visit (ImageFilter& f)
FilteringProgram target;
f.setProgram( target );
}
// List of parameters
std::ostringstream oss;
oss << "Custom ";
list_parameters_(f, oss);
}
void ImGuiVisitor::visit (CloneSource& s)