Enum
VkDataGraphOpticalFlowPerformanceLevelARM
Optical flow performance level types
Optical flow exposes performance levels which the user can choose based on the desired performance and quality requirement. The optical flow performance level types are defined with the following:
typedef enum VkDataGraphOpticalFlowPerformanceLevelARM {
VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_UNKNOWN_ARM = 0,
VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_SLOW_ARM = 1,
VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_MEDIUM_ARM = 2,
VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_FAST_ARM = 3,
} VkDataGraphOpticalFlowPerformanceLevelARM;
pub struct DataGraphOpticalFlowPerformanceLevelARM(u32);
impl DataGraphOpticalFlowPerformanceLevelARM {
pub const UNKNOWN: Self = 0;
pub const SLOW: Self = 1;
pub const MEDIUM: Self = 2;
pub const FAST: Self = 3;
}
VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_SLOW_ARMis a level with slower performance but higher quality.VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_MEDIUM_ARMis a level with medium performance and medium quality.VK_DATA_GRAPH_OPTICAL_FLOW_PERFORMANCE_LEVEL_FAST_ARMis a preset with higher performance but lower quality.
Type
Enum