diff options
author | Eric Engestrom <[email protected]> | 2019-02-27 12:20:31 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-03-05 11:57:10 +0000 |
commit | 3d4238d26c5de4a0f7a5c225c77fd29db29672ee (patch) | |
tree | 4f55ae58b6e272c5d89ae98d51491cf43c16d610 | |
parent | e21c201c9684fa5b588735c2edeb5985c2a2f795 (diff) |
anv: use the platform defines in vk.xml instead of hard-coding them
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_entrypoints_gen.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py index 8e815b102ea..4dfde4513f0 100644 --- a/src/intel/vulkan/anv_entrypoints_gen.py +++ b/src/intel/vulkan/anv_entrypoints_gen.py @@ -582,12 +582,15 @@ def get_entrypoints_defines(doc): """Maps entry points to extension defines.""" entrypoints_to_defines = {} + platform_define = {} + for platform in doc.findall('./platforms/platform'): + name = platform.attrib['name'] + define = platform.attrib['protect'] + platform_define[name] = define + for extension in doc.findall('./extensions/extension[@platform]'): platform = extension.attrib['platform'] - ext = '_KHR' - if platform.upper() == 'XLIB_XRANDR': - ext = '_EXT' - define = 'VK_USE_PLATFORM_' + platform.upper() + ext + define = platform_define[platform] for entrypoint in extension.findall('./require/command'): fullname = entrypoint.attrib['name'] |