vulkan-3.24: Bindings to the Vulkan graphics API.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Vulkan.Extensions.VK_EXT_depth_clip_control

Description

Name

VK_EXT_depth_clip_control - device extension

VK_EXT_depth_clip_control

Name String
VK_EXT_depth_clip_control
Extension Type
Device extension
Registered Extension Number
356
Revision
1
Extension and Version Dependencies
  • Requires support for Vulkan 1.0
  • Requires VK_KHR_get_physical_device_properties2 to be enabled for any device-level functionality
Special Use
Contact

Other Extension Metadata

Last Modified Date
2021-11-09
Contributors
  • Spencer Fricke, Samsung Electronics
  • Shahbaz Youssefi, Google
  • Ralph Potter, Samsung Electronics

Description

This extension allows the application to use the OpenGL depth range in NDC, i.e. with depth in range [-1, 1], as opposed to Vulkan’s default of [0, 1]. The purpose of this extension is to allow efficient layering of OpenGL over Vulkan, by avoiding emulation in the pre-rasterization shader stages. This emulation, which effectively duplicates gl_Position but with a different depth value, costs ALU and consumes shader output components that the implementation may not have to spare to meet OpenGL minimum requirements.

New Structures

New Enum Constants

Issues

1) Should this extension include an origin control option to match GL_LOWER_LEFT found in ARB_clip_control?

RESOLVED: No. The fix for porting over the origin is a simple y-axis flip. The depth clip control is a much harder problem to solve than what this extension is aimed to solve. Adding an equivalent to GL_LOWER_LEFT would require more testing.

2) Should this pipeline state be dynamic?

RESOLVED: Yes. The purpose of this extension is to emulate the OpenGL depth range, which is expected to be globally fixed (in case of OpenGL ES) or very infrequently changed (with glClipControl in OpenGL).

3) Should the control provided in this extension be an enum that could be extended in the future?

RESOLVED: No. It is highly unlikely that the depth range is changed to anything other than [0, 1] in the future. Should that happen a new extension will be required to extend such an enum, and that extension might as well add a new struct to chain to PipelineViewportStateCreateInfo::pNext instead.

Version History

  • Revision 0, 2020-10-01 (Spencer Fricke)

    • Internal revisions
  • Revision 1, 2020-11-26 (Shahbaz Youssefi)

    • Language fixes

See Also

PhysicalDeviceDepthClipControlFeaturesEXT, PipelineViewportDepthClipControlCreateInfoEXT

Document Notes

For more information, see the Vulkan Specification

This page is a generated document. Fixes and changes should be made to the generator scripts, not directly.

Synopsis

Documentation

data PhysicalDeviceDepthClipControlFeaturesEXT Source #

VkPhysicalDeviceDepthClipControlFeaturesEXT - Structure describing additional depth clip control supported by an implementation

Members

This structure describes the following feature:

Description

If the PhysicalDeviceDepthClipControlFeaturesEXT structure is included in the pNext chain of the PhysicalDeviceFeatures2 structure passed to getPhysicalDeviceFeatures2, it is filled in to indicate whether each corresponding feature is supported. PhysicalDeviceDepthClipControlFeaturesEXT can also be used in the pNext chain of DeviceCreateInfo to selectively enable these features.

Valid Usage (Implicit)

See Also

VK_EXT_depth_clip_control, Bool32, StructureType

Constructors

PhysicalDeviceDepthClipControlFeaturesEXT 

Fields

Instances

Instances details
Storable PhysicalDeviceDepthClipControlFeaturesEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

Show PhysicalDeviceDepthClipControlFeaturesEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

Eq PhysicalDeviceDepthClipControlFeaturesEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

FromCStruct PhysicalDeviceDepthClipControlFeaturesEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

ToCStruct PhysicalDeviceDepthClipControlFeaturesEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

Zero PhysicalDeviceDepthClipControlFeaturesEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

data PipelineViewportDepthClipControlCreateInfoEXT Source #

VkPipelineViewportDepthClipControlCreateInfoEXT - Structure specifying parameters of a newly created pipeline depth clip control state

Valid Usage

Valid Usage (Implicit)

See Also

VK_EXT_depth_clip_control, Bool32, StructureType

Constructors

PipelineViewportDepthClipControlCreateInfoEXT 

Fields

Instances

Instances details
Storable PipelineViewportDepthClipControlCreateInfoEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

Show PipelineViewportDepthClipControlCreateInfoEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

Eq PipelineViewportDepthClipControlCreateInfoEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

FromCStruct PipelineViewportDepthClipControlCreateInfoEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

ToCStruct PipelineViewportDepthClipControlCreateInfoEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

Zero PipelineViewportDepthClipControlCreateInfoEXT Source # 
Instance details

Defined in Vulkan.Extensions.VK_EXT_depth_clip_control

type EXT_DEPTH_CLIP_CONTROL_EXTENSION_NAME = "VK_EXT_depth_clip_control" Source #

pattern EXT_DEPTH_CLIP_CONTROL_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a Source #