from mako.template import Template
-import anv_extensions
+from anv_extensions import *
MAX_API_VERSION = 1.0
for command in feature.findall('./require/command'):
enabled_commands.add(command.attrib['name'])
- supported = set(ext.name for ext in anv_extensions.EXTENSIONS)
+ supported = set(ext.name for ext in EXTENSIONS)
for extension in doc.findall('.extensions/extension'):
if extension.attrib['name'] not in supported:
continue
Extension('VK_KHX_multiview', 1, True),
]
-def init_exts_from_xml(xml):
+def _init_exts_from_xml(xml):
""" Walk the Vulkan XML and fill out extra extension information. """
xml = et.parse(xml)
for ext in EXTENSIONS:
assert ext.type == 'instance' or ext.type == 'device'
-TEMPLATE = Template(COPYRIGHT + """
+_TEMPLATE = Template(COPYRIGHT + """
#include "anv_private.h"
#include "vk_util.h"
parser.add_argument('--xml', help='Vulkan API XML file.', required=True)
args = parser.parse_args()
- init_exts_from_xml(args.xml)
+ _init_exts_from_xml(args.xml)
template_env = {
'instance_extensions': [e for e in EXTENSIONS if e.type == 'instance'],
}
with open(args.out, 'w') as f:
- f.write(TEMPLATE.render(**template_env))
+ f.write(_TEMPLATE.render(**template_env))