MayaFlux 0.1.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.

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 CUSTOM_RATE ///< Nodes that process at a custom-defined rate
54};
@ 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.