summaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_extensions.py
diff options
context:
space:
mode:
authorBas Nieuwenhuizen <[email protected]>2018-01-21 13:39:22 +0100
committerBas Nieuwenhuizen <[email protected]>2018-03-07 21:18:34 +0100
commit5b3979704df51f05a6f226ba3a10046df466d03d (patch)
tree596941e3fb1785ebc6418f5972e594bab8e0b0bf /src/amd/vulkan/radv_extensions.py
parent97f10934edf8ac02f28fccea0bcbbe9293375357 (diff)
radv: Update MAX_API_VERSION to 1.1.0
v2: Don't bump supported version. v3: Update json files. Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_extensions.py')
-rw-r--r--src/amd/vulkan/radv_extensions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_extensions.py b/src/amd/vulkan/radv_extensions.py
index 458f05668ae..ff6a070d4df 100644
--- a/src/amd/vulkan/radv_extensions.py
+++ b/src/amd/vulkan/radv_extensions.py
@@ -31,7 +31,7 @@ import xml.etree.cElementTree as et
from mako.template import Template
-MAX_API_VERSION = '1.0.57'
+MAX_API_VERSION = '1.1.0'
class Extension:
def __init__(self, name, ext_version, enable):
@@ -262,7 +262,7 @@ void radv_fill_device_extension_table(const struct radv_physical_device *device,
uint32_t
radv_physical_device_api_version(struct radv_physical_device *dev)
{
- return ${MAX_API_VERSION.c_vk_version()};
+ return VK_MAKE_VERSION(1, 0, 68);
}
""")