Loading...
Searching...
No Matches
plugins/score-plugin-gfx/Gfx/Video/Metadata.hpp
1#pragma once
2#include <Process/ProcessMetadata.hpp>
3
4namespace Gfx::Video
5{
6class Model;
7}
8
9PROCESS_METADATA(
10 , Gfx::Video::Model, "32dc5341-7748-4c31-a226-82e6bd685744",
11 "video", // Internal name
12 "Video", // Pretty name
13 Process::ProcessCategory::Visual, // Category
14 "Visuals", // Category
15 "Display a video", // Description
16 "ossia team", // Author
17 (QStringList{"gfx", "video"}), // Tags
18 {}, // Inputs
19 {}, // Outputs
20 QUrl("https://ossia.io/score-docs/processes/video.html#video"),
23)
Definition score-plugin-gfx/Gfx/Video/Process.hpp:17
@ HandlesLooping
The presenter / view already handles rendering when the model loops.
Definition ProcessFlags.hpp:34
@ SupportsTemporal
Can be loaded as a process of an interval.
Definition ProcessFlags.hpp:19
@ PutInNewSlot
When created in an interval, go on the top slot or in a new slot.
Definition ProcessFlags.hpp:31