Package org.lwjgl.vulkan
Class KHRDepthStencilResolve
- java.lang.Object
-
- org.lwjgl.vulkan.KHRDepthStencilResolve
-
public final class KHRDepthStencilResolve extends java.lang.Object
This extension adds support for automatically resolving multisampled depth/stencil attachments in a subpass in a similar manner as for color attachments.- Name String
VK_KHR_depth_stencil_resolve
- Extension Type
- Device extension
- Registered Extension Number
- 200
- Revision
- 1
- Extension and Version Dependencies
- Requires Vulkan 1.0
- Requires
VK_KHR_create_renderpass2
- Contact
- Jan-Harald Fredriksen janharald
- Last Modified Date
- 2018-04-09
- Contributors
- Jan-Harald Fredriksen, Arm
- Andrew Garrard, Samsung Electronics
- Soowan Park, Samsung Electronics
- Jeff Bolz, NVIDIA
- Daniel Rakos, AMD
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
VK_KHR_DEPTH_STENCIL_RESOLVE_EXTENSION_NAME
The extension name.static int
VK_KHR_DEPTH_STENCIL_RESOLVE_SPEC_VERSION
The extension specification version.static int
VK_RESOLVE_MODE_AVERAGE_BIT_KHR
VK_RESOLVE_MODE_MAX_BIT_KHR
VK_RESOLVE_MODE_MIN_BIT_KHR
VK_RESOLVE_MODE_NONE_KHR
VK_RESOLVE_MODE_SAMPLE_ZERO_BIT_KHRVkResolveModeFlagBitsKHR - Bitmask indicating supported depth and stencil resolve modesstatic int
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR
VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE_KHRExtendsVkStructureType
.
-
-
-
Field Detail
-
VK_KHR_DEPTH_STENCIL_RESOLVE_SPEC_VERSION
The extension specification version.
-
VK_KHR_DEPTH_STENCIL_RESOLVE_EXTENSION_NAME
The extension name.
-
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR, VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE_KHR
ExtendsVkStructureType
.Enum values:
-
VK_RESOLVE_MODE_NONE_KHR, VK_RESOLVE_MODE_SAMPLE_ZERO_BIT_KHR, VK_RESOLVE_MODE_AVERAGE_BIT_KHR, VK_RESOLVE_MODE_MIN_BIT_KHR, VK_RESOLVE_MODE_MAX_BIT_KHR
VkResolveModeFlagBitsKHR - Bitmask indicating supported depth and stencil resolve modesDescription
RESOLVE_MODE_NONE_KHR
indicates that no resolve operation is done.RESOLVE_MODE_SAMPLE_ZERO_BIT_KHR
indicates that result of the resolve operation is equal to the value of sample 0.RESOLVE_MODE_AVERAGE_BIT_KHR
indicates that result of the resolve operation is the average of the sample values.RESOLVE_MODE_MIN_BIT_KHR
indicates that result of the resolve operation is the minimum of the sample values.RESOLVE_MODE_MAX_BIT_KHR
indicates that result of the resolve operation is the maximum of the sample values.
See Also
VkResolveModeFlagsKHR
,VkSubpassDescriptionDepthStencilResolveKHR
-
-