diff options
| author | Chris Forbes <chrisforbes@google.com> | 2016-08-22 16:53:12 +1200 |
|---|---|---|
| committer | Chris Forbes <chrisforbes@google.com> | 2016-08-23 13:12:41 +1200 |
| commit | 334b3be8a6022ba22850c2cce1d79be38045e01e (patch) | |
| tree | 42eff830b2cb233b610a5c66b8383ec07339c131 | |
| parent | ec55d6bce501034362c82cb19ea64e585cc190e9 (diff) | |
| download | usermoji-334b3be8a6022ba22850c2cce1d79be38045e01e.tar.xz | |
docs: Add description of new SC cases
Signed-off-by: Chris Forbes <chrisforbes@google.com>
| -rw-r--r-- | layers/vk_validation_layer_details.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/layers/vk_validation_layer_details.md b/layers/vk_validation_layer_details.md index 6b09bff0..f8846f55 100644 --- a/layers/vk_validation_layer_details.md +++ b/layers/vk_validation_layer_details.md @@ -137,6 +137,8 @@ It flags errors when inconsistencies are found across interfaces between shader | Descriptor type mismatch | Flags error if a descriptor type does not match the shader resource type. | DESCRIPTOR_TYPE_MISMATCH | vkCreateGraphicsPipelines | TODO | NA | | Feature not enabled | Flags error if a capability declared by the shader requires a feature not enabled on the device | FEATURE_NOT_ENABLED | vkCreateGraphicsPipelines | TODO | NA | | Bad capability | Flags error if a capability declared by the shader is not supported by Vulkan shaders | BAD_CAPABILITY | vkCreateGraphicsPipelines | TODO | NA | +| Missing input attachment | Flags error if shader consumes an input attachment which is not provided in the subpass in which a pipeline will be used | MISSING_INPUT_ATTACHMENT | vkCreateGraphicsPipelines | CreatePipelineInputAttachment* | NA | +| Input attachment type mismatch | Flags error if shader's declaration of an input attachment has a type inconsistent with the format declared in the renderpass | INPUT_ATTACHMENT_TYPE_MISMATCH | vkCreateGraphicsPipelines | CreatePipelineInputAttachmentTypeMismatch | NA | | NA | Enum used for informational messages | NONE | | TODO | None | ### VK_LAYER_LUNARG_core_validation Shader Checker Pending Work |
