2018-01-16 10:10:28 -08:00
|
|
|
COPYRIGHT = """\
|
|
|
|
|
/*
|
|
|
|
|
* Copyright 2017 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
* the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
|
* IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
import xml.etree.cElementTree as et
|
|
|
|
|
|
|
|
|
|
from mako.template import Template
|
|
|
|
|
|
|
|
|
|
from anv_extensions import *
|
|
|
|
|
|
2019-06-29 13:58:59 +01:00
|
|
|
platform_defines = []
|
|
|
|
|
|
2018-01-16 10:10:28 -08:00
|
|
|
def _init_exts_from_xml(xml):
|
|
|
|
|
""" Walk the Vulkan XML and fill out extra extension information. """
|
|
|
|
|
|
|
|
|
|
xml = et.parse(xml)
|
|
|
|
|
|
|
|
|
|
ext_name_map = {}
|
|
|
|
|
for ext in EXTENSIONS:
|
|
|
|
|
ext_name_map[ext.name] = ext
|
|
|
|
|
|
2019-07-07 11:46:18 +03:00
|
|
|
# KHR_display is missing from the list.
|
|
|
|
|
platform_defines.append('VK_USE_PLATFORM_DISPLAY_KHR')
|
2019-06-29 13:58:59 +01:00
|
|
|
for platform in xml.findall('./platforms/platform'):
|
|
|
|
|
platform_defines.append(platform.attrib['protect'])
|
|
|
|
|
|
2018-01-16 10:10:28 -08:00
|
|
|
for ext_elem in xml.findall('.extensions/extension'):
|
|
|
|
|
ext_name = ext_elem.attrib['name']
|
|
|
|
|
if ext_name not in ext_name_map:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
ext = ext_name_map[ext_name]
|
2018-04-16 07:38:31 -07:00
|
|
|
ext.type = ext_elem.attrib['type']
|
2018-01-16 10:10:28 -08:00
|
|
|
|
2018-01-16 14:23:29 -08:00
|
|
|
_TEMPLATE_H = Template(COPYRIGHT + """
|
|
|
|
|
|
|
|
|
|
#ifndef ANV_EXTENSIONS_H
|
|
|
|
|
#define ANV_EXTENSIONS_H
|
|
|
|
|
|
|
|
|
|
#include "stdbool.h"
|
|
|
|
|
|
|
|
|
|
#define ANV_INSTANCE_EXTENSION_COUNT ${len(instance_extensions)}
|
|
|
|
|
|
|
|
|
|
extern const VkExtensionProperties anv_instance_extensions[];
|
|
|
|
|
|
|
|
|
|
struct anv_instance_extension_table {
|
|
|
|
|
union {
|
|
|
|
|
bool extensions[ANV_INSTANCE_EXTENSION_COUNT];
|
|
|
|
|
struct {
|
|
|
|
|
%for ext in instance_extensions:
|
|
|
|
|
bool ${ext.name[3:]};
|
|
|
|
|
%endfor
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-16 15:49:28 -08:00
|
|
|
extern const struct anv_instance_extension_table anv_instance_extensions_supported;
|
|
|
|
|
|
2018-01-16 14:23:29 -08:00
|
|
|
|
|
|
|
|
#define ANV_DEVICE_EXTENSION_COUNT ${len(device_extensions)}
|
|
|
|
|
|
|
|
|
|
extern const VkExtensionProperties anv_device_extensions[];
|
|
|
|
|
|
|
|
|
|
struct anv_device_extension_table {
|
|
|
|
|
union {
|
|
|
|
|
bool extensions[ANV_DEVICE_EXTENSION_COUNT];
|
|
|
|
|
struct {
|
|
|
|
|
%for ext in device_extensions:
|
|
|
|
|
bool ${ext.name[3:]};
|
|
|
|
|
%endfor
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-16 16:15:13 -08:00
|
|
|
struct anv_physical_device;
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
anv_physical_device_get_supported_extensions(const struct anv_physical_device *device,
|
|
|
|
|
struct anv_device_extension_table *extensions);
|
|
|
|
|
|
2018-01-16 14:23:29 -08:00
|
|
|
#endif /* ANV_EXTENSIONS_H */
|
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
|
_TEMPLATE_C = Template(COPYRIGHT + """
|
2018-01-16 10:10:28 -08:00
|
|
|
#include "anv_private.h"
|
|
|
|
|
|
|
|
|
|
#include "vk_util.h"
|
|
|
|
|
|
|
|
|
|
/* Convert the VK_USE_PLATFORM_* defines to booleans */
|
2019-06-29 13:58:59 +01:00
|
|
|
%for platform_define in platform_defines:
|
|
|
|
|
#ifdef ${platform_define}
|
|
|
|
|
# undef ${platform_define}
|
|
|
|
|
# define ${platform_define} true
|
2018-01-16 10:10:28 -08:00
|
|
|
#else
|
2019-06-29 13:58:59 +01:00
|
|
|
# define ${platform_define} false
|
2018-01-16 10:10:28 -08:00
|
|
|
#endif
|
|
|
|
|
%endfor
|
|
|
|
|
|
|
|
|
|
/* And ANDROID too */
|
|
|
|
|
#ifdef ANDROID
|
|
|
|
|
# undef ANDROID
|
|
|
|
|
# define ANDROID true
|
|
|
|
|
#else
|
|
|
|
|
# define ANDROID false
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define ANV_HAS_SURFACE (VK_USE_PLATFORM_WAYLAND_KHR || \\
|
|
|
|
|
VK_USE_PLATFORM_XCB_KHR || \\
|
2018-02-07 10:31:44 -08:00
|
|
|
VK_USE_PLATFORM_XLIB_KHR || \\
|
|
|
|
|
VK_USE_PLATFORM_DISPLAY_KHR)
|
2018-01-16 10:10:28 -08:00
|
|
|
|
2017-11-09 19:17:29 -08:00
|
|
|
static const uint32_t MAX_API_VERSION = ${MAX_API_VERSION.c_vk_version()};
|
|
|
|
|
|
2017-10-11 18:09:32 -07:00
|
|
|
VkResult anv_EnumerateInstanceVersion(
|
|
|
|
|
uint32_t* pApiVersion)
|
|
|
|
|
{
|
2017-11-09 19:17:29 -08:00
|
|
|
*pApiVersion = MAX_API_VERSION;
|
2017-10-11 18:09:32 -07:00
|
|
|
return VK_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:23:29 -08:00
|
|
|
const VkExtensionProperties anv_instance_extensions[ANV_INSTANCE_EXTENSION_COUNT] = {
|
|
|
|
|
%for ext in instance_extensions:
|
|
|
|
|
{"${ext.name}", ${ext.ext_version}},
|
|
|
|
|
%endfor
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-16 15:49:28 -08:00
|
|
|
const struct anv_instance_extension_table anv_instance_extensions_supported = {
|
2018-01-16 10:10:28 -08:00
|
|
|
%for ext in instance_extensions:
|
2018-01-16 15:49:28 -08:00
|
|
|
.${ext.name[3:]} = ${ext.enable},
|
2018-01-16 10:10:28 -08:00
|
|
|
%endfor
|
2018-01-16 15:49:28 -08:00
|
|
|
};
|
2018-01-16 10:10:28 -08:00
|
|
|
|
|
|
|
|
uint32_t
|
2017-09-22 07:36:39 -07:00
|
|
|
anv_physical_device_api_version(struct anv_physical_device *device)
|
2018-01-16 10:10:28 -08:00
|
|
|
{
|
2017-09-22 07:36:39 -07:00
|
|
|
uint32_t version = 0;
|
|
|
|
|
|
2017-11-09 19:17:29 -08:00
|
|
|
uint32_t override = vk_get_version_override();
|
|
|
|
|
if (override)
|
|
|
|
|
return MIN2(override, MAX_API_VERSION);
|
|
|
|
|
|
2017-09-22 07:36:39 -07:00
|
|
|
%for version in API_VERSIONS:
|
|
|
|
|
if (!(${version.enable}))
|
|
|
|
|
return version;
|
2018-06-17 16:28:02 -07:00
|
|
|
version = ${version.version.c_vk_version()};
|
2017-09-22 07:36:39 -07:00
|
|
|
|
|
|
|
|
%endfor
|
|
|
|
|
return version;
|
2018-01-16 10:10:28 -08:00
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:23:29 -08:00
|
|
|
const VkExtensionProperties anv_device_extensions[ANV_DEVICE_EXTENSION_COUNT] = {
|
|
|
|
|
%for ext in device_extensions:
|
|
|
|
|
{"${ext.name}", ${ext.ext_version}},
|
|
|
|
|
%endfor
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-16 16:15:13 -08:00
|
|
|
void
|
|
|
|
|
anv_physical_device_get_supported_extensions(const struct anv_physical_device *device,
|
|
|
|
|
struct anv_device_extension_table *extensions)
|
2018-01-16 10:10:28 -08:00
|
|
|
{
|
2018-01-16 16:15:13 -08:00
|
|
|
*extensions = (struct anv_device_extension_table) {
|
2018-01-16 10:10:28 -08:00
|
|
|
%for ext in device_extensions:
|
2018-01-16 16:15:13 -08:00
|
|
|
.${ext.name[3:]} = ${ext.enable},
|
2018-01-16 10:10:28 -08:00
|
|
|
%endfor
|
2018-01-16 16:15:13 -08:00
|
|
|
};
|
2018-01-16 10:10:28 -08:00
|
|
|
}
|
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
parser = argparse.ArgumentParser()
|
2018-01-16 14:23:29 -08:00
|
|
|
parser.add_argument('--out-c', help='Output C file.')
|
|
|
|
|
parser.add_argument('--out-h', help='Output H file.')
|
2018-01-16 10:10:28 -08:00
|
|
|
parser.add_argument('--xml',
|
|
|
|
|
help='Vulkan API XML file.',
|
|
|
|
|
required=True,
|
|
|
|
|
action='append',
|
|
|
|
|
dest='xml_files')
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
|
|
for filename in args.xml_files:
|
|
|
|
|
_init_exts_from_xml(filename)
|
|
|
|
|
|
|
|
|
|
for ext in EXTENSIONS:
|
|
|
|
|
assert ext.type == 'instance' or ext.type == 'device'
|
|
|
|
|
|
|
|
|
|
template_env = {
|
2017-09-22 07:36:39 -07:00
|
|
|
'API_VERSIONS': API_VERSIONS,
|
2018-01-16 10:10:28 -08:00
|
|
|
'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'],
|
2019-06-29 13:58:59 +01:00
|
|
|
'platform_defines': platform_defines,
|
2018-01-16 10:10:28 -08:00
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:23:29 -08:00
|
|
|
if args.out_h:
|
|
|
|
|
with open(args.out_h, 'w') as f:
|
|
|
|
|
f.write(_TEMPLATE_H.render(**template_env))
|
|
|
|
|
|
|
|
|
|
if args.out_c:
|
|
|
|
|
with open(args.out_c, 'w') as f:
|
|
|
|
|
f.write(_TEMPLATE_C.render(**template_env))
|