diff options
author | Bas Nieuwenhuizen <[email protected]> | 2017-09-17 13:55:16 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-09-20 21:48:35 +0200 |
commit | 25ea3852798dc2d32345727f062384024044409b (patch) | |
tree | 9db911c62e5926ac8217ed8440ecfc3a69ab5bc4 /src/amd/vulkan/radv_entrypoints_gen.py | |
parent | 886626960bca51bdfc0880e3830c0a95ea143c4c (diff) |
radv: Add VK_KHR_bind_memory2 support.
Nothing too exciting, just adding the possibility for a pNext pointer,
and batch binding. Our binding is pretty much trivial.
It also adds VK_IMAGE_CREATE_ALIAS_BIT_KHR, but since we store no
state in radv_image, I don't think we have to do anything there.
Reviewed-by: Dave Airlie <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_entrypoints_gen.py')
-rw-r--r-- | src/amd/vulkan/radv_entrypoints_gen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_entrypoints_gen.py b/src/amd/vulkan/radv_entrypoints_gen.py index 9634f76fcd6..21738f4da90 100644 --- a/src/amd/vulkan/radv_entrypoints_gen.py +++ b/src/amd/vulkan/radv_entrypoints_gen.py @@ -57,6 +57,7 @@ SUPPORTED_EXTENSIONS = [ 'VK_KHR_external_semaphore_capabilities', 'VK_KHR_external_semaphore', 'VK_KHR_external_semaphore_fd', + 'VK_KHR_bind_memory2', ] # We generate a static hash table for entry point lookup |