vulkan/physical_device_features: Drop some unnecessary dependencies

None of these are actually used.  We parse the XML bare and don't need
any extension or entrypoint information.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13150>
This commit is contained in:
Jason Ekstrand
2021-10-01 12:19:12 -05:00
committed by Marge Bot
parent b86da01c54
commit ec9619a83e
2 changed files with 0 additions and 8 deletions
-2
View File
@@ -43,8 +43,6 @@ vk_commands_gen_depend_files = [
vk_dispatch_table_gen_depend_files,
]
vk_physical_device_features_gen_depend_files = [
files('vk_dispatch_table_gen.py'),
vk_dispatch_table_gen_depend_files,
]
vk_entrypoints_gen = files('vk_entrypoints_gen.py')
@@ -25,17 +25,11 @@ COPYRIGHT=u"""
import argparse
import os
import re
from collections import OrderedDict, namedtuple
import xml.etree.ElementTree as et
from mako.template import Template
# Mesa-local imports must be declared in meson variable
# '{file_without_suffix}_depend_files'.
from vk_extensions import *
from vk_dispatch_table_gen import get_entrypoints_from_xml, EntrypointParam
TEMPLATE_H = Template(COPYRIGHT + """\
/* This file generated from ${filename}, don't edit directly. */