Class VkDisplayNativeHdrSurfaceCapabilitiesAMD

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkDisplayNativeHdrSurfaceCapabilitiesAMD
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing display native HDR specific capabilities of a surface.
    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • localDimmingSupport – specifies whether the surface supports local dimming. If this is TRUE, VkSwapchainDisplayNativeHdrCreateInfoAMD can be used to explicitly enable or disable local dimming for the surface. Local dimming may also be overriden by SetLocalDimmingAMD during the lifetime of the swapchain.

    Layout

    
     struct VkDisplayNativeHdrSurfaceCapabilitiesAMD {
         VkStructureType sType;
         void * pNext;
         VkBool32 localDimmingSupport;
     }