C Specification
The VkQueueFamilyDataGraphOpticalFlowPropertiesARM structure is
defined as:
// Provided by VK_ARM_data_graph_optical_flow
typedef struct VkQueueFamilyDataGraphOpticalFlowPropertiesARM {
VkStructureType sType;
void* pNext;
VkDataGraphOpticalFlowGridSizeFlagsARM supportedOutputGridSizes;
VkDataGraphOpticalFlowGridSizeFlagsARM supportedHintGridSizes;
VkBool32 hintSupported;
VkBool32 costSupported;
uint32_t minWidth;
uint32_t minHeight;
uint32_t maxWidth;
uint32_t maxHeight;
} VkQueueFamilyDataGraphOpticalFlowPropertiesARM;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
supportedOutputGridSizesare the supported VkDataGraphOpticalFlowGridSizeFlagsARM which can be specified inVkDataGraphPipelineOpticalFlowCreateInfoARM::outputGridSize. -
supportedHintGridSizesare the supported VkDataGraphOpticalFlowGridSizeFlagsARM which can be specified inVkDataGraphPipelineOpticalFlowCreateInfoARM::hintGridSize. -
hintSupportedis a boolean describing whether using hint flow vector map is supported in an optical flow graph pipeline. -
costSupportedis a boolean describing whether cost map generation is supported in an optical flow graph pipeline. -
minWidthis the minimum width in pixels for images used in an optical flow graph pipeline. -
minHeightis the minimum height in pixels for images used in an optical flow graph pipeline. -
maxWidthis the maximum width in pixels for images used in an optical flow graph pipeline. -
maxHeightis the maximum height in pixels for images used in an optical flow graph pipeline.
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.