VkDisplayModeStereoPropertiesNV(3)

Name

VkDisplayModeStereoPropertiesNV - Structure describing the stereo properties of a display mode

C Specification

The VkDisplayModeStereoPropertiesNV structure is defined as:

// Provided by VK_NV_display_stereo
typedef struct VkDisplayModeStereoPropertiesNV {
    VkStructureType    sType;
    const void*        pNext;
    VkBool32           hdmi3DSupported;
} VkDisplayModeStereoPropertiesNV;

Members

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • hdmi3DSupported indicates whether this display mode can be used for a display surface configured for VK_DISPLAY_SURFACE_STEREO_TYPE_HDMI_3D_NV.

Description

Valid Usage (Implicit)
  • VUID-VkDisplayModeStereoPropertiesNV-sType-sType
    sType must be VK_STRUCTURE_TYPE_DISPLAY_MODE_STEREO_PROPERTIES_NV

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.