Package org.lwjgl.vulkan
Class NVXImageViewHandle
- java.lang.Object
-
- org.lwjgl.vulkan.NVXImageViewHandle
-
public class NVXImageViewHandle extends java.lang.Object
This extension allows applications to query an opaque handle from an image view for use as a sampled image or storage image. This provides no direct functionality itself.- Name String
VK_NVX_image_view_handle
- Extension Type
- Device extension
- Registered Extension Number
- 31
- Revision
- 1
- Extension and Version Dependencies
- Requires Vulkan 1.0
- Contact
- Eric Werness ewerness
- Last Modified Date
- 2018-12-07
- Contributors
- Eric Werness, NVIDIA
- Jeff Bolz, NVIDIA
- Daniel Koch, NVIDIA
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
VK_NVX_IMAGE_VIEW_HANDLE_EXTENSION_NAME
The extension name.static int
VK_NVX_IMAGE_VIEW_HANDLE_SPEC_VERSION
The extension specification version.static int
VK_STRUCTURE_TYPE_IMAGE_VIEW_HANDLE_INFO_NVX
ExtendsVkStructureType
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
nvkGetImageViewHandleNVX(VkDevice device, long pInfo)
Unsafe version of:GetImageViewHandleNVX
static int
vkGetImageViewHandleNVX(VkDevice device, VkImageViewHandleInfoNVX pInfo)
Get the handle for an image view for a specific descriptor type.
-
-
-
Field Detail
-
VK_NVX_IMAGE_VIEW_HANDLE_SPEC_VERSION
public static final int VK_NVX_IMAGE_VIEW_HANDLE_SPEC_VERSION
The extension specification version.- See Also:
- Constant Field Values
-
VK_NVX_IMAGE_VIEW_HANDLE_EXTENSION_NAME
public static final java.lang.String VK_NVX_IMAGE_VIEW_HANDLE_EXTENSION_NAME
The extension name.- See Also:
- Constant Field Values
-
VK_STRUCTURE_TYPE_IMAGE_VIEW_HANDLE_INFO_NVX
public static final int VK_STRUCTURE_TYPE_IMAGE_VIEW_HANDLE_INFO_NVX
ExtendsVkStructureType
.- See Also:
- Constant Field Values
-
-
Method Detail
-
nvkGetImageViewHandleNVX
public static int nvkGetImageViewHandleNVX(VkDevice device, long pInfo)
Unsafe version of:GetImageViewHandleNVX
-
vkGetImageViewHandleNVX
public static int vkGetImageViewHandleNVX(VkDevice device, VkImageViewHandleInfoNVX pInfo)
Get the handle for an image view for a specific descriptor type.C Specification
To get the handle for an image view, call:
uint32_t vkGetImageViewHandleNVX( VkDevice device, const VkImageViewHandleInfoNVX* pInfo);
Valid Usage (Implicit)
device
must be a validVkDevice
handlepInfo
must be a valid pointer to a validVkImageViewHandleInfoNVX
structure
See Also
- Parameters:
device
- the logical device that owns the image view.pInfo
- describes the image view to query and type of handle.
-
-