52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
|
|
// Creative Commons Attribution 4.0 International License; see
|
|
// http://creativecommons.org/licenses/by/4.0/
|
|
|
|
VkImageView(3)
|
|
==============
|
|
|
|
Name
|
|
----
|
|
VkImageView - Opaque handle to a image view object
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin VkImageView - Opaque handle to a image view object
|
|
|
|
Image objects are not directly accessed by pipeline shaders for reading or
|
|
writing image data. Instead, _image views_ representing contiguous ranges of
|
|
the image subresources and containing additional metadata are used for that
|
|
purpose. Views must: be created on images of compatible types, and must:
|
|
represent a valid subset of image subresources.
|
|
|
|
Image views are represented by sname:VkImageView handles:
|
|
|
|
include::../api/handles/VkImageView.txt[]
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
// refEnd VkImageView
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
slink:VkDescriptorImageInfo, slink:VkFramebufferCreateInfo, flink:vkCreateImageView, flink:vkDestroyImageView
|
|
|
|
|
|
Document Notes
|
|
--------------
|
|
|
|
For more information, see the Vulkan Specification at URL
|
|
|
|
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkImageView
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|