Class VkPhysicalDeviceDepthStencilResolveProperties

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPhysicalDeviceDepthStencilResolveProperties>
org.lwjgl.vulkan.VkPhysicalDeviceDepthStencilResolveProperties
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
Direct Known Subclasses:
VkPhysicalDeviceDepthStencilResolvePropertiesKHR

public class VkPhysicalDeviceDepthStencilResolveProperties extends org.lwjgl.system.Struct<VkPhysicalDeviceDepthStencilResolveProperties> implements org.lwjgl.system.NativeResource
Structure describing depth/stencil resolve properties that can be supported by an implementation.
Description

If the VkPhysicalDeviceDepthStencilResolveProperties structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceDepthStencilResolveProperties {
     VkStructureType sType();
     void * pNext();
     VkResolveModeFlags supportedDepthResolveModes();
     VkResolveModeFlags supportedStencilResolveModes();
     VkBool32 independentResolveNone();
     VkBool32 independentResolve();
 }