diff options
author | Matt Turner <mattst88@gmail.com> | 2016-10-25 11:49:33 -0700 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-10-27 11:16:51 +0100 |
commit | cc5995d9e65fc10703304744a9e58e1a518ad88c (patch) | |
tree | ff74fe617d46bb16e28cc2a6b3331fe97e9c556c /src/amd | |
parent | 42de0666eca90aa158174478a54133b6a2732413 (diff) | |
download | external_mesa3d-cc5995d9e65fc10703304744a9e58e1a518ad88c.zip external_mesa3d-cc5995d9e65fc10703304744a9e58e1a518ad88c.tar.gz external_mesa3d-cc5995d9e65fc10703304744a9e58e1a518ad88c.tar.bz2 |
radv: Replace "abi_versions" with correct "api_version".
git history shows "abi_versions" was used from the outset.
Cc: <mesa-stable@lists.freedesktop.org>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=98415
Reviewed-by: Dave Airlie <airlied@redhat.com>
(cherry picked from commit 14aac061e92fe57d1ee61843c1ccd1b275d8ca76)
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/dev_icd.json.in | 2 | ||||
-rw-r--r-- | src/amd/vulkan/radeon_icd.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/dev_icd.json.in b/src/amd/vulkan/dev_icd.json.in index fd8c7e3..f726df0 100644 --- a/src/amd/vulkan/dev_icd.json.in +++ b/src/amd/vulkan/dev_icd.json.in @@ -2,6 +2,6 @@ "file_format_version": "1.0.0", "ICD": { "library_path": "@build_libdir@/libvulkan_radeon.so", - "abi_versions": "1.0.3" + "api_version": "1.0.3" } } diff --git a/src/amd/vulkan/radeon_icd.json b/src/amd/vulkan/radeon_icd.json index 2085bd6..cbb4aab 100644 --- a/src/amd/vulkan/radeon_icd.json +++ b/src/amd/vulkan/radeon_icd.json @@ -2,6 +2,6 @@ "file_format_version": "1.0.0", "ICD": { "library_path": "libvulkan_radeon.so", - "abi_versions": "1.0.3" + "api_version": "1.0.3" } } |