From faf9d0710a494dbcfe6f2d8cec2fedb325097ec1 Mon Sep 17 00:00:00 2001 From: Dustin Graves Date: Tue, 10 May 2016 11:42:58 -0600 Subject: [PATCH] tests: Add required parameter/error code tests Add tests for the parameter_validation REQUIRED_PARAMETER and FAILURE_RETURN_CODE error codes to layer_validation_tests. Change-Id: I324901e411eb92dbaf0c7d232ae1d8bf63d433b1 --- layers/vk_validation_layer_details.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layers/vk_validation_layer_details.md b/layers/vk_validation_layer_details.md index 6446d43..b84b205 100644 --- a/layers/vk_validation_layer_details.md +++ b/layers/vk_validation_layer_details.md @@ -192,9 +192,9 @@ The VK_LAYER_LUNARG_parameter_validation layer validates parameter values and fl | Valid VkStructureType Value | Verifies that the sType field of a Vulkan structure contains the value expected for a structure of that type | INVALID_STRUCT_STYPE | | InvalidStructSType | NA | | Valid Structure pNext Value | Verifies that the pNext field of a Vulkan structure references a value that is compatible with a structure of that type or is NULL when a structure of that type has no compatible pNext values | INVALID_STRUCT_PNEXT | | InvalidStructPNext | NA | | Required Parameter | Verifies that a required parameter was not specified as 0 or NULL | REQUIRED_PARAMETER | | RequiredParameter | NA | -| Reserved Parameter | Verifies that a parameter reserved for future use was specified as 0 or NULL | RESERVED_PARAMETER | | TBD | NA | +| Reserved Parameter | Verifies that a parameter reserved for future use was specified as 0 or NULL | RESERVED_PARAMETER | | ReservedParameter | NA | | Unrecognized Value | Verifies that a Vulkan enumeration, VkFlags, or VkBool32 parameter contains a value that is recognized as valid for that type | UNRECOGNIZED_VALUE | | UnrecognizedValue | NA | -| Failed Call Return Code | Provides a description of a failure code returned by a Vulkan API call | FAILURE_RETURN_CODE | | TBD | NA | +| Failed Call Return Code | Provides a description of a failure code returned by a Vulkan API call | FAILURE_RETURN_CODE | | FailedReturnValue | NA | | NA | Enum used for informational messages | NONE | | NA | None | ### VK_LAYER_LUNARG_parameter_validation Pending Work -- 2.7.4