2017-02-15 15:41:50 -08:00
|
|
|
# encoding=utf-8
|
|
|
|
|
# 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, sublicense, 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 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 NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS 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.
|
|
|
|
|
|
2017-07-18 11:06:43 +01:00
|
|
|
"""Create enum to string functions for vulkan using vk.xml."""
|
2017-02-15 15:41:50 -08:00
|
|
|
|
|
|
|
|
from __future__ import print_function
|
2017-02-28 01:24:41 +01:00
|
|
|
import argparse
|
2017-02-15 15:41:50 -08:00
|
|
|
import os
|
|
|
|
|
import textwrap
|
|
|
|
|
import xml.etree.cElementTree as et
|
|
|
|
|
|
|
|
|
|
from mako.template import Template
|
|
|
|
|
|
|
|
|
|
COPYRIGHT = textwrap.dedent(u"""\
|
|
|
|
|
* 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, sublicense, 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 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 NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS 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.""")
|
|
|
|
|
|
|
|
|
|
C_TEMPLATE = Template(textwrap.dedent(u"""\
|
|
|
|
|
/* Autogenerated file -- do not edit
|
|
|
|
|
* generated by ${file}
|
|
|
|
|
*
|
|
|
|
|
${copyright}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <vulkan/vulkan.h>
|
2017-08-15 16:48:38 -07:00
|
|
|
#include <vulkan/vk_android_native_buffer.h>
|
2017-02-15 15:41:50 -08:00
|
|
|
#include "util/macros.h"
|
|
|
|
|
#include "vk_enum_to_str.h"
|
|
|
|
|
|
|
|
|
|
% for enum in enums:
|
|
|
|
|
|
2017-09-15 15:10:54 +01:00
|
|
|
const char *
|
|
|
|
|
vk_${enum.name[2:]}_to_str(${enum.name} input)
|
|
|
|
|
{
|
|
|
|
|
switch(input) {
|
2017-09-21 08:20:55 -07:00
|
|
|
% for v in sorted(enum.values.keys()):
|
|
|
|
|
% if enum.values[v] in FOREIGN_ENUM_VALUES:
|
2017-09-15 15:10:54 +01:00
|
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wswitch"
|
|
|
|
|
% endif
|
|
|
|
|
case ${v}:
|
2017-09-21 08:20:55 -07:00
|
|
|
return "${enum.values[v]}";
|
|
|
|
|
% if enum.values[v] in FOREIGN_ENUM_VALUES:
|
2017-09-15 15:10:54 +01:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
|
|
|
|
|
% endif
|
|
|
|
|
% endfor
|
|
|
|
|
default:
|
|
|
|
|
unreachable("Undefined enum value.");
|
2017-02-15 15:41:50 -08:00
|
|
|
}
|
2017-09-15 15:10:54 +01:00
|
|
|
}
|
2017-02-15 15:41:50 -08:00
|
|
|
%endfor"""),
|
|
|
|
|
output_encoding='utf-8')
|
|
|
|
|
|
|
|
|
|
H_TEMPLATE = Template(textwrap.dedent(u"""\
|
|
|
|
|
/* Autogenerated file -- do not edit
|
|
|
|
|
* generated by ${file}
|
|
|
|
|
*
|
|
|
|
|
${copyright}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MESA_VK_ENUM_TO_STR_H
|
|
|
|
|
#define MESA_VK_ENUM_TO_STR_H
|
|
|
|
|
|
|
|
|
|
#include <vulkan/vulkan.h>
|
2017-08-15 16:48:38 -07:00
|
|
|
#include <vulkan/vk_android_native_buffer.h>
|
2017-02-15 15:41:50 -08:00
|
|
|
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
% for ext in extensions:
|
|
|
|
|
#define _${ext.name}_number (${ext.number})
|
|
|
|
|
% endfor
|
|
|
|
|
|
2017-02-15 15:41:50 -08:00
|
|
|
% for enum in enums:
|
2017-09-15 15:10:54 +01:00
|
|
|
const char * vk_${enum.name[2:]}_to_str(${enum.name} input);
|
2017-02-15 15:41:50 -08:00
|
|
|
% endfor
|
|
|
|
|
|
|
|
|
|
#endif"""),
|
|
|
|
|
output_encoding='utf-8')
|
|
|
|
|
|
2017-08-15 16:48:38 -07:00
|
|
|
# These enums are defined outside their respective enum blocks, and thus cause
|
|
|
|
|
# -Wswitch warnings.
|
|
|
|
|
FOREIGN_ENUM_VALUES = [
|
|
|
|
|
"VK_STRUCTURE_TYPE_NATIVE_BUFFER_ANDROID",
|
|
|
|
|
]
|
|
|
|
|
|
2017-02-15 15:41:50 -08:00
|
|
|
|
2017-09-15 15:10:56 +01:00
|
|
|
class NamedFactory(object):
|
2017-02-15 15:41:50 -08:00
|
|
|
"""Factory for creating enums."""
|
|
|
|
|
|
|
|
|
|
def __init__(self, type_):
|
|
|
|
|
self.registry = {}
|
|
|
|
|
self.type = type_
|
|
|
|
|
|
2017-09-15 15:10:56 +01:00
|
|
|
def __call__(self, name, **kwargs):
|
2017-02-15 15:41:50 -08:00
|
|
|
try:
|
|
|
|
|
return self.registry[name]
|
|
|
|
|
except KeyError:
|
2017-09-15 15:10:56 +01:00
|
|
|
n = self.registry[name] = self.type(name, **kwargs)
|
2017-02-15 15:41:50 -08:00
|
|
|
return n
|
|
|
|
|
|
2017-09-21 08:20:55 -07:00
|
|
|
def get(self, name):
|
|
|
|
|
return self.registry.get(name)
|
|
|
|
|
|
2017-02-15 15:41:50 -08:00
|
|
|
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
class VkExtension(object):
|
|
|
|
|
"""Simple struct-like class representing extensions"""
|
|
|
|
|
|
|
|
|
|
def __init__(self, name, number=None):
|
|
|
|
|
self.name = name
|
|
|
|
|
self.number = number
|
|
|
|
|
|
|
|
|
|
|
2017-02-15 15:41:50 -08:00
|
|
|
class VkEnum(object):
|
|
|
|
|
"""Simple struct-like class representing a single Vulkan Enum."""
|
|
|
|
|
|
|
|
|
|
def __init__(self, name, values=None):
|
|
|
|
|
self.name = name
|
2017-09-21 08:20:55 -07:00
|
|
|
# Maps numbers to names
|
|
|
|
|
self.values = values or dict()
|
|
|
|
|
|
|
|
|
|
def add_value(self, name, value=None,
|
|
|
|
|
extension=None, offset=None,
|
|
|
|
|
error=False):
|
|
|
|
|
assert value is not None or extension is not None
|
|
|
|
|
if value is None:
|
|
|
|
|
value = 1000000000 + (extension.number - 1) * 1000 + offset
|
|
|
|
|
if error:
|
|
|
|
|
value = -value
|
|
|
|
|
|
|
|
|
|
if value not in self.values:
|
|
|
|
|
self.values[value] = name
|
2017-02-15 15:41:50 -08:00
|
|
|
|
|
|
|
|
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
def parse_xml(enum_factory, ext_factory, filename):
|
|
|
|
|
"""Parse the XML file. Accumulate results into the factories.
|
2017-02-15 15:41:50 -08:00
|
|
|
|
|
|
|
|
This parser is a memory efficient iterative XML parser that returns a list
|
|
|
|
|
of VkEnum objects.
|
|
|
|
|
"""
|
|
|
|
|
|
2017-09-21 08:05:25 -07:00
|
|
|
xml = et.parse(filename)
|
|
|
|
|
|
|
|
|
|
for enum_type in xml.findall('./enums[@type="enum"]'):
|
|
|
|
|
enum = enum_factory(enum_type.attrib['name'])
|
|
|
|
|
for value in enum_type.findall('./enum'):
|
2017-09-21 08:20:55 -07:00
|
|
|
enum.add_value(value.attrib['name'],
|
|
|
|
|
value=int(value.attrib['value']))
|
2017-09-21 08:05:25 -07:00
|
|
|
|
|
|
|
|
for ext_elem in xml.findall('./extensions/extension[@supported="vulkan"]'):
|
2017-09-21 08:20:55 -07:00
|
|
|
extension = ext_factory(ext_elem.attrib['name'],
|
|
|
|
|
number=int(ext_elem.attrib['number']))
|
|
|
|
|
|
|
|
|
|
for value in ext_elem.findall('./require/enum[@extends]'):
|
|
|
|
|
enum = enum_factory.get(value.attrib['extends'])
|
|
|
|
|
if enum is None:
|
|
|
|
|
continue
|
|
|
|
|
if 'value' in value.attrib:
|
|
|
|
|
enum.add_value(value.attrib['name'],
|
|
|
|
|
value=int(value.attrib['value']))
|
|
|
|
|
else:
|
|
|
|
|
error = 'dir' in value.attrib and value.attrib['dir'] == '-'
|
|
|
|
|
enum.add_value(value.attrib['name'],
|
|
|
|
|
extension=extension,
|
|
|
|
|
offset=int(value.attrib['offset']),
|
|
|
|
|
error=error)
|
|
|
|
|
|
2017-02-15 15:41:50 -08:00
|
|
|
|
|
|
|
|
def main():
|
2017-02-28 01:24:41 +01:00
|
|
|
parser = argparse.ArgumentParser()
|
2017-08-15 16:34:20 -07:00
|
|
|
parser.add_argument('--xml', required=True,
|
|
|
|
|
help='Vulkan API XML files',
|
|
|
|
|
action='append',
|
|
|
|
|
dest='xml_files')
|
2017-02-28 01:24:41 +01:00
|
|
|
parser.add_argument('--outdir',
|
|
|
|
|
help='Directory to put the generated files in',
|
|
|
|
|
required=True)
|
|
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
2017-09-15 15:10:56 +01:00
|
|
|
enum_factory = NamedFactory(VkEnum)
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
ext_factory = NamedFactory(VkExtension)
|
2017-08-15 16:34:20 -07:00
|
|
|
for filename in args.xml_files:
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
parse_xml(enum_factory, ext_factory, filename)
|
2017-09-15 15:10:56 +01:00
|
|
|
enums = sorted(enum_factory.registry.values(), key=lambda e: e.name)
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
extensions = sorted(ext_factory.registry.values(), key=lambda e: e.name)
|
2017-08-15 16:34:20 -07:00
|
|
|
|
2017-02-28 01:24:41 +01:00
|
|
|
for template, file_ in [(C_TEMPLATE, os.path.join(args.outdir, 'vk_enum_to_str.c')),
|
|
|
|
|
(H_TEMPLATE, os.path.join(args.outdir, 'vk_enum_to_str.h'))]:
|
2017-02-15 15:41:50 -08:00
|
|
|
with open(file_, 'wb') as f:
|
|
|
|
|
f.write(template.render(
|
|
|
|
|
file=os.path.basename(__file__),
|
2017-09-15 15:10:55 +01:00
|
|
|
enums=enums,
|
vulkan: enum generator: generate extension number defines
New extensions can introduce additional enums. Most of the new enums
will have disjoint numbers from the initial enums. For example new
formats introduced by VK_IMG_format_pvrtc :
VK_FORMAT_ASTC_10x8_UNORM_BLOCK = 177,
VK_FORMAT_ASTC_10x8_SRGB_BLOCK = 178,
VK_FORMAT_ASTC_10x10_UNORM_BLOCK = 179,
VK_FORMAT_ASTC_10x10_SRGB_BLOCK = 180,
VK_FORMAT_ASTC_12x10_UNORM_BLOCK = 181,
VK_FORMAT_ASTC_12x10_SRGB_BLOCK = 182,
VK_FORMAT_ASTC_12x12_UNORM_BLOCK = 183,
VK_FORMAT_ASTC_12x12_SRGB_BLOCK = 184,
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG = 1000054000,
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG = 1000054001,
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG = 1000054002,
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG = 1000054003,
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG = 1000054004,
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG = 1000054005,
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG = 1000054006,
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG = 1000054007,
It's obvious we can't have a single table for handling those anymore.
Fortunately the enum values actually contain the number of the
extension that introduced the new enums. So we can build an
indirection table off the extension number and then index by
subtracting the first enum of the the format enum value.
This change makes the extension number available in the generated enum
code.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2017-09-15 15:10:57 +01:00
|
|
|
extensions=extensions,
|
2017-08-15 16:48:38 -07:00
|
|
|
copyright=COPYRIGHT,
|
|
|
|
|
FOREIGN_ENUM_VALUES=FOREIGN_ENUM_VALUES))
|
2017-02-15 15:41:50 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
main()
|