diff options
author | Lionel Landwerlin <[email protected]> | 2017-01-29 04:14:54 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-02-02 01:33:16 +0000 |
commit | 7158255069a9d431e9fc5ecd1aa462eb2d50d9a5 (patch) | |
tree | 39f612ebf4af1c3962d5d42350951c9678463429 /src/intel/vulkan/anv_device.c | |
parent | 9413e11869cfeb95417df5a01101fa5d42c733e8 (diff) |
anv: enable VK_KHR_shader_draw_parameters
Enables 10 tests from:
dEQP-VK.draw.shader_draw_parameters.*
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 3403dc126aa..91ee67f053d 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -272,6 +272,10 @@ static const VkExtensionProperties device_extensions[] = { .extensionName = VK_KHR_MAINTENANCE1_EXTENSION_NAME, .specVersion = 1, }, + { + .extensionName = VK_KHR_SHADER_DRAW_PARAMETERS_EXTENSION_NAME, + .specVersion = 1, + } }; static void * |