[Mesa-dev] [PATCH 07/56] anv/entrypoints: Add an is_device_entrypoint helper
Jason Ekstrand
jason at jlekstrand.net
Wed Mar 7 14:34:55 UTC 2018
Reviewed-by: Samuel Iglesias Gonsálvez <siglesias at igalia.com>
---
src/intel/vulkan/anv_entrypoints_gen.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py
index 4a910ae..b33460f 100644
--- a/src/intel/vulkan/anv_entrypoints_gen.py
+++ b/src/intel/vulkan/anv_entrypoints_gen.py
@@ -215,7 +215,7 @@ string_map_lookup(const char *str)
/** Trampoline entrypoints for all device functions */
% for e in entrypoints:
- % if e.params[0].type not in ('VkDevice', 'VkCommandBuffer'):
+ % if not e.is_device_entrypoint():
<% continue %>
% endif
% if e.guard is not None:
@@ -239,7 +239,7 @@ string_map_lookup(const char *str)
const struct anv_dispatch_table anv_tramp_dispatch_table = {
% for e in entrypoints:
- % if e.params[0].type not in ('VkDevice', 'VkCommandBuffer'):
+ % if not e.is_device_entrypoint():
<% continue %>
% endif
% if e.guard is not None:
@@ -406,6 +406,9 @@ class Entrypoint(object):
self.core_version = None
self.extension = None
+ def is_device_entrypoint(self):
+ return self.params[0].type in ('VkDevice', 'VkCommandBuffer')
+
def prefixed_name(self, prefix):
assert self.name.startswith('vk')
return prefix + '_' + self.name[2:]
--
2.5.0.400.gff86faf
More information about the mesa-dev
mailing list