MayaFlux 0.3.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ ProcessingToken

Enumerates the different processing domains for nodes.

This enum defines the various processing rates or domains that nodes can operate in. Each token represents a specific type of processing, such as audio rate, visual rate, or custom processing rates. Nodes can be registered under these tokens to indicate their intended processing behavior within a RootNode.

Enumerator
AUDIO_RATE 

Nodes that process at the audio sample rate.

VISUAL_RATE 

Nodes that process at the visual frame rate.

EVENT_RATE 

Nodes that process based on event triggers (e.g., input events)

CUSTOM_RATE 

Nodes that process at a custom-defined rate.

Definition at line 50 of file ProcessingTokens.hpp.

50 {
51 AUDIO_RATE, ///< Nodes that process at the audio sample rate
52 VISUAL_RATE, ///< Nodes that process at the visual frame rate
53 EVENT_RATE, ///< Nodes that process based on event triggers (e.g., input events)
54 CUSTOM_RATE ///< Nodes that process at a custom-defined rate
55};
@ AUDIO_RATE
Nodes that process at the audio sample rate.
@ CUSTOM_RATE
Nodes that process at a custom-defined rate.
@ VISUAL_RATE
Nodes that process at the visual frame rate.