summaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-06-29 13:58:59 +0100
committerEric Engestrom <[email protected]>2019-06-29 22:38:54 +0100
commit38305e6c94ea31e0f775cbc693fea267023e3bc4 (patch)
tree5cdd15fd3ac1d1624b67f27619e59c3d655f2e43 /src/intel
parentbb75c73e962ecdbfe8be53573dbdfa1f7c3bd73c (diff)
anv: replace hard-coded platform list with vk.xml parse
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/vulkan/anv_extensions_gen.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/intel/vulkan/anv_extensions_gen.py b/src/intel/vulkan/anv_extensions_gen.py
index a140c267452..66ab93a316e 100644
--- a/src/intel/vulkan/anv_extensions_gen.py
+++ b/src/intel/vulkan/anv_extensions_gen.py
@@ -31,6 +31,8 @@ from mako.template import Template
from anv_extensions import *
+platform_defines = []
+
def _init_exts_from_xml(xml):
""" Walk the Vulkan XML and fill out extra extension information. """
@@ -40,6 +42,9 @@ def _init_exts_from_xml(xml):
for ext in EXTENSIONS:
ext_name_map[ext.name] = ext
+ for platform in xml.findall('./platforms/platform'):
+ platform_defines.append(platform.attrib['protect'])
+
for ext_elem in xml.findall('.extensions/extension'):
ext_name = ext_elem.attrib['name']
if ext_name not in ext_name_map:
@@ -103,12 +108,12 @@ _TEMPLATE_C = Template(COPYRIGHT + """
#include "vk_util.h"
/* Convert the VK_USE_PLATFORM_* defines to booleans */
-%for platform in ['ANDROID_KHR', 'WAYLAND_KHR', 'XCB_KHR', 'XLIB_KHR', 'DISPLAY_KHR', 'XLIB_XRANDR_EXT']:
-#ifdef VK_USE_PLATFORM_${platform}
-# undef VK_USE_PLATFORM_${platform}
-# define VK_USE_PLATFORM_${platform} true
+%for platform_define in platform_defines:
+#ifdef ${platform_define}
+# undef ${platform_define}
+# define ${platform_define} true
#else
-# define VK_USE_PLATFORM_${platform} false
+# define ${platform_define} false
#endif
%endfor
@@ -204,6 +209,7 @@ if __name__ == '__main__':
'MAX_API_VERSION': MAX_API_VERSION,
'instance_extensions': [e for e in EXTENSIONS if e.type == 'instance'],
'device_extensions': [e for e in EXTENSIONS if e.type == 'device'],
+ 'platform_defines': platform_defines,
}
if args.out_h: