vulkan-3.2.0.0: Bindings to the Vulkan graphics API.

Safe HaskellNone
LanguageHaskell2010

Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

Synopsis

Documentation

getImageViewHandleNVX :: forall io. MonadIO io => Device -> ImageViewHandleInfoNVX -> io Word32 Source #

vkGetImageViewHandleNVX - Get the handle for an image view for a specific descriptor type

Parameters

  • device is the logical device that owns the image view.
  • pInfo describes the image view to query and type of handle.

Valid Usage (Implicit)

See Also

Device, ImageViewHandleInfoNVX

getImageViewAddressNVX :: forall io. MonadIO io => Device -> ImageView -> io ImageViewAddressPropertiesNVX Source #

vkGetImageViewAddressNVX - Get the device address of an image view

Parameters

  • device is the logical device that owns the image view.
  • imageView is a handle to the image view.
  • pProperties contains the device address and size when the call returns.

Return Codes

Success
Failure

See Also

Device, ImageView, ImageViewAddressPropertiesNVX

data ImageViewHandleInfoNVX Source #

VkImageViewHandleInfoNVX - Structure specifying the image view for handle queries

Valid Usage

Valid Usage (Implicit)

  • pNext must be NULL
  • imageView must be a valid ImageView handle
  • descriptorType must be a valid DescriptorType value
  • If sampler is not NULL_HANDLE, sampler must be a valid Sampler handle
  • Both of imageView, and sampler that are valid handles of non-ignored parameters must have been created, allocated, or retrieved from the same Device

See Also

DescriptorType, ImageView, Sampler, StructureType, getImageViewHandleNVX

Constructors

ImageViewHandleInfoNVX 

Fields

Instances
Show ImageViewHandleInfoNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

Storable ImageViewHandleInfoNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

FromCStruct ImageViewHandleInfoNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

ToCStruct ImageViewHandleInfoNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

Zero ImageViewHandleInfoNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

data ImageViewAddressPropertiesNVX Source #

VkImageViewAddressPropertiesNVX - Structure specifying the image view for handle queries

Valid Usage (Implicit)

See Also

DeviceAddress, DeviceSize, StructureType, getImageViewAddressNVX

Constructors

ImageViewAddressPropertiesNVX 

Fields

Instances
Show ImageViewAddressPropertiesNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

Storable ImageViewAddressPropertiesNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

FromCStruct ImageViewAddressPropertiesNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

ToCStruct ImageViewAddressPropertiesNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

Zero ImageViewAddressPropertiesNVX Source # 
Instance details

Defined in Graphics.Vulkan.Extensions.VK_NVX_image_view_handle

type NVX_IMAGE_VIEW_HANDLE_EXTENSION_NAME = "VK_NVX_image_view_handle" Source #

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