plugins/score-plugin-gfx/Gfx/Filter/Metadata.hpp
1 #pragma once
2 #include <Process/ProcessMetadata.hpp>
3 
4 namespace Gfx::Filter
5 {
6 class Model;
7 }
8 
9 PROCESS_METADATA(
10  , Gfx::Filter::Model, "74ca45ff-92c9-44a0-8f1a-754dea05ee1b",
11  "shaderfilter", // Internal name
12  "ISF Shader", // Pretty name
13  Process::ProcessCategory::Visual, // Category
14  "Visuals", // Category
15  "Interactive Shader Format Shader. See https://isf.video", // Description
16  "ossia team", // Author
17  (QStringList{"shader", "gfx"}), // Tags
18  {}, // Inputs
19  {}, // Outputs
20  Process::ProcessFlags::SupportsAll | Process::ProcessFlags::ControlSurface // Flags
21 )
Definition: score-plugin-gfx/Gfx/Filter/Process.hpp:16