summaryrefslogtreecommitdiff
path: root/registry/vulkan/scripts/cereal/dispatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'registry/vulkan/scripts/cereal/dispatch.py')
-rw-r--r--registry/vulkan/scripts/cereal/dispatch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/registry/vulkan/scripts/cereal/dispatch.py b/registry/vulkan/scripts/cereal/dispatch.py
index 1f658342..42cba8ca 100644
--- a/registry/vulkan/scripts/cereal/dispatch.py
+++ b/registry/vulkan/scripts/cereal/dispatch.py
@@ -355,7 +355,7 @@ bool vulkan_dispatch_check_%s_%s(
self.module.appendImpl(self.cgenImpl.swapCode())
- def onBeginFeature(self, featureName):
+ def onBeginFeature(self, featureName, featureType):
self.currentFeature = featureName
def onGenType(self, typeXml, name, alias):
@@ -489,8 +489,8 @@ void init_vulkan_dispatch_from_system_loader(
self.module.appendImpl(self.cgenImpl.swapCode())
- def onBeginFeature(self, featureName):
- VulkanDispatch.onBeginFeature(self, featureName);
+ def onBeginFeature(self, featureName, featureType):
+ VulkanDispatch.onBeginFeature(self, featureName, featureType);
def onGenType(self, typeXml, name, alias):
VulkanDispatch.onGenType(self, typeXml, name, alias);