Merge pull request #675 from krOoze/add_missing_sparse_image_vu
Add missing sparse VUs to VkImageCreateInfo
This commit is contained in:
commit
c4bf001c65
|
@ -819,6 +819,9 @@ endif::VK_VERSION_1_1,VK_KHR_maintenance1[]
|
|||
If the <<features-features-sparseBinding,sparse bindings>> feature is
|
||||
not enabled, pname:flags must: not contain
|
||||
ename:VK_IMAGE_CREATE_SPARSE_BINDING_BIT
|
||||
* If the <<features-features-sparseResidencyAliased,sparse aliased
|
||||
residency>> feature is not enabled, pname:flags must: not contain
|
||||
ename:VK_IMAGE_CREATE_SPARSE_ALIASED_BIT
|
||||
* [[VUID-VkImageCreateInfo-imageType-00970]]
|
||||
If pname:imageType is ename:VK_IMAGE_TYPE_1D, pname:flags must: not
|
||||
contain ename:VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT
|
||||
|
@ -928,6 +931,10 @@ endif::VK_VERSION_1_1,VK_KHR_maintenance1[]
|
|||
If pname:flags contains ename:VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT or
|
||||
ename:VK_IMAGE_CREATE_SPARSE_ALIASED_BIT, it must: also contain
|
||||
ename:VK_IMAGE_CREATE_SPARSE_BINDING_BIT
|
||||
* If any of the bits ename:VK_IMAGE_CREATE_SPARSE_BINDING_BIT,
|
||||
ename:VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT, or
|
||||
ename:VK_IMAGE_CREATE_SPARSE_ALIASED_BIT are set,
|
||||
ename:VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT must: not also be set
|
||||
ifdef::VK_VERSION_1_1[]
|
||||
* [[VUID-VkImageCreateInfo-flags-01890]]
|
||||
If the protected memory feature is not enabled, pname:flags must: not
|
||||
|
@ -1431,11 +1438,6 @@ ifdef::VK_EXT_sample_locations[]
|
|||
attachment.
|
||||
endif::VK_EXT_sample_locations[]
|
||||
|
||||
If any of the bits ename:VK_IMAGE_CREATE_SPARSE_BINDING_BIT,
|
||||
ename:VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT, or
|
||||
ename:VK_IMAGE_CREATE_SPARSE_ALIASED_BIT are set,
|
||||
ename:VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT must: not also be set.
|
||||
|
||||
See <<sparsememory-sparseresourcefeatures,Sparse Resource Features>> and
|
||||
<<sparsememory-physicalfeatures,Sparse Physical Device Features>> for more
|
||||
details.
|
||||
|
|
Loading…
Reference in New Issue