diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-04 13:39:59 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-10 10:16:35 -0600 |
| commit | c5f3987068d9857be82fd77f2c8888fccba64315 (patch) | |
| tree | d5be3012b8a1a6bb0055cd6f67a67d3522abfebf /include | |
| parent | fae25d2777686b78b39042e621dfb0aae567d47f (diff) | |
| download | usermoji-c5f3987068d9857be82fd77f2c8888fccba64315.tar.xz | |
bug-14538: Remove driver validation checks
Marked validation checks done in the driver with
TODOVV. Once we verify the check is covered in a
validation layer we can remove the driver code.
Diffstat (limited to 'include')
| -rw-r--r-- | include/vulkan.h | 41 |
1 files changed, 10 insertions, 31 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index d1e4727f..23c68058 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -151,37 +151,16 @@ typedef enum { VK_EVENT_RESET = 5, VK_INCOMPLETE = 6, VK_ERROR_UNKNOWN = -1, - VK_ERROR_UNAVAILABLE = -2, - VK_ERROR_INITIALIZATION_FAILED = -3, - VK_ERROR_OUT_OF_HOST_MEMORY = -4, - VK_ERROR_OUT_OF_DEVICE_MEMORY = -5, - VK_ERROR_DEVICE_ALREADY_CREATED = -6, - VK_ERROR_DEVICE_LOST = -7, - VK_ERROR_INVALID_POINTER = -8, - VK_ERROR_INVALID_VALUE = -9, - VK_ERROR_INVALID_HANDLE = -10, - VK_ERROR_INVALID_ORDINAL = -11, - VK_ERROR_INVALID_MEMORY_SIZE = -12, - VK_ERROR_INVALID_EXTENSION = -13, - VK_ERROR_INVALID_FLAGS = -14, - VK_ERROR_INVALID_ALIGNMENT = -15, - VK_ERROR_INVALID_FORMAT = -16, - VK_ERROR_INVALID_IMAGE = -17, - VK_ERROR_INVALID_DESCRIPTOR_SET_DATA = -18, - VK_ERROR_INVALID_QUEUE_TYPE = -19, - VK_ERROR_UNSUPPORTED_SHADER_IL_VERSION = -20, - VK_ERROR_BAD_SHADER_CODE = -21, - VK_ERROR_BAD_PIPELINE_DATA = -22, - VK_ERROR_NOT_MAPPABLE = -23, - VK_ERROR_MEMORY_MAP_FAILED = -24, - VK_ERROR_MEMORY_UNMAP_FAILED = -25, - VK_ERROR_INCOMPATIBLE_DEVICE = -26, - VK_ERROR_INCOMPATIBLE_DRIVER = -27, - VK_ERROR_INCOMPLETE_COMMAND_BUFFER = -28, - VK_ERROR_BUILDING_COMMAND_BUFFER = -29, - VK_ERROR_MEMORY_NOT_BOUND = -30, - VK_ERROR_INCOMPATIBLE_QUEUE = -31, - VK_ERROR_INVALID_LAYER = -32, + VK_ERROR_OUT_OF_HOST_MEMORY = -2, + VK_ERROR_OUT_OF_DEVICE_MEMORY = -3, + VK_ERROR_INITIALIZATION_FAILED = -4, + VK_ERROR_DEVICE_LOST = -5, + VK_ERROR_MEMORY_MAP_FAILED = -6, + VK_ERROR_MEMORY_UNMAP_FAILED = -7, + VK_ERROR_INCOMPATIBLE_DEVICE = -8, + VK_ERROR_INCOMPATIBLE_DRIVER = -9, + VK_ERROR_INVALID_EXTENSION = -10, + VK_ERROR_INVALID_LAYER = -11, VK_RESULT_BEGIN_RANGE = VK_ERROR_INVALID_LAYER, VK_RESULT_END_RANGE = VK_INCOMPLETE, VK_RESULT_NUM = (VK_INCOMPLETE - VK_ERROR_INVALID_LAYER + 1), |
