summaryrefslogtreecommitdiffstats
path: root/src/freedreno/vulkan
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2019-02-01 10:12:38 -0800
committerChia-I Wu <[email protected]>2019-03-11 10:02:13 -0700
commit025384527215a023bf6c035e0e8c6b1a92ddaa13 (patch)
tree5b364ea641b48217df2b77f4c163f96f84c07903 /src/freedreno/vulkan
parentde89436216e178b616aa3969e3d68b24b60602fd (diff)
turnip: advertise VK_KHR_external_memory_capabilities
AFAICT, it is supported.
Diffstat (limited to 'src/freedreno/vulkan')
-rw-r--r--src/freedreno/vulkan/tu_extensions.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/freedreno/vulkan/tu_extensions.py b/src/freedreno/vulkan/tu_extensions.py
index 37b4f0ca0f0..1ac7bb95c5e 100644
--- a/src/freedreno/vulkan/tu_extensions.py
+++ b/src/freedreno/vulkan/tu_extensions.py
@@ -71,6 +71,7 @@ EXTENSIONS = [
Extension('VK_EXT_display_surface_counter', 1, 'VK_USE_PLATFORM_DISPLAY_KHR'),
Extension('VK_EXT_display_control', 1, 'VK_USE_PLATFORM_DISPLAY_KHR'),
Extension('VK_EXT_debug_report', 9, True),
+ Extension('VK_KHR_external_memory_capabilities', 1, True),
]
class VkVersion: