org.lwjgl.vulkan.EXTDepthClipEnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-vulkan Show documentation
Show all versions of lwjgl-vulkan Show documentation
A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.vulkan;
/**
* This extension allows the depth clipping operation, that is normally implicitly controlled by {@link VkPipelineRasterizationStateCreateInfo}{@code ::depthClampEnable}, to instead be controlled explicitly by {@link VkPipelineRasterizationDepthClipStateCreateInfoEXT}{@code ::depthClipEnable}.
*
* This is useful for translating DX content which assumes depth clamping is always enabled, but depth clip can be controlled by the DepthClipEnable rasterization state (D3D12_RASTERIZER_DESC).
*
* VK_EXT_depth_clip_enable
*
*
* - Name String
* - {@code VK_EXT_depth_clip_enable}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 103
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
*
* - Special Use
*
* - D3D support
*
* - Contact
*
* - Piers Daniell pdaniell-nv
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2018-12-20
* - Contributors
*
* - Daniel Rakos, AMD
* - Henri Verbeet, CodeWeavers
* - Jeff Bolz, NVIDIA
* - Philip Rebohle, DXVK
* - Tobias Hector, AMD
*
*
*/
public final class EXTDepthClipEnable {
/** The extension specification version. */
public static final int VK_EXT_DEPTH_CLIP_ENABLE_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_EXT_DEPTH_CLIP_ENABLE_EXTENSION_NAME = "VK_EXT_depth_clip_enable";
/**
* Extends {@code VkStructureType}.
*
* Enum values:
*
*
* - {@link #VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT}
* - {@link #VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT}
*
*/
public static final int
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT = 1000102000,
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT = 1000102001;
private EXTDepthClipEnable() {}
}