diff options
author | Jason Ekstrand <[email protected]> | 2017-09-22 07:44:10 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-03-07 12:13:47 -0800 |
commit | d6b65222df53677e5d3b2f6f42163387725d57b8 (patch) | |
tree | 0fac0ffbcf1bd16d75e8b52bdc15c1d7ad4ff484 | |
parent | 03c07ac5480886ef5f5bd4cff4a7b6d20e142bc9 (diff) |
anv: Enable Vulkan 1.1
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_extensions.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_extensions.py b/src/intel/vulkan/anv_extensions.py index 2a16735d3b6..d0b70a04055 100644 --- a/src/intel/vulkan/anv_extensions.py +++ b/src/intel/vulkan/anv_extensions.py @@ -54,7 +54,10 @@ class ApiVersion: # available. API_VERSIONS = [ ApiVersion('1.0.57', True), - ApiVersion('1.1.0', False), + + # DRM_IOCTL_SYNCOBJ_WAIT is required for VK_KHR_external_fence which is a + # required core feature in Vulkan 1.1 + ApiVersion('1.1.0', 'device->has_syncobj_wait'), ] MAX_API_VERSION = None # Computed later |