aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2019-02-01 10:27:28 -0800
committerChia-I Wu <[email protected]>2019-03-11 10:02:13 -0700
commit6d1c4049de8038ca16bb76aefd66b70d29f2841d (patch)
tree46979c515b44c450266691617f33c076b58a1769 /src
parent025384527215a023bf6c035e0e8c6b1a92ddaa13 (diff)
turnip: advertise VK_KHR_external_memory
AFAICT, it is supported. We don't need to handle any of the new structs because our BOs can always be exported.
Diffstat (limited to 'src')
-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 1ac7bb95c5e..53e69690280 100644
--- a/src/freedreno/vulkan/tu_extensions.py
+++ b/src/freedreno/vulkan/tu_extensions.py
@@ -72,6 +72,7 @@ EXTENSIONS = [
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),
+ Extension('VK_KHR_external_memory', 1, True),
]
class VkVersion: