From dbf4cfeff559891a62acb6e9212b6ce0bad56fca Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Wed, 22 Sep 2021 10:59:02 +0300 Subject: [PATCH] vulkan: remove unused VkCommand Signed-off-by: Lionel Landwerlin Reviewed-by: Jason Ekstrand Part-of: --- src/vulkan/util/gen_enum_to_str.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/vulkan/util/gen_enum_to_str.py b/src/vulkan/util/gen_enum_to_str.py index a7108fe8690..234809cc163 100644 --- a/src/vulkan/util/gen_enum_to_str.py +++ b/src/vulkan/util/gen_enum_to_str.py @@ -279,15 +279,6 @@ class VkEnum(object): self.guard = g -class VkCommand(object): - """Simple struct-like class representing a single Vulkan command""" - - def __init__(self, name, device_entrypoint=False): - self.name = name - self.device_entrypoint = device_entrypoint - self.extension = None - - class VkChainStruct(object): """Simple struct-like class representing a single Vulkan struct identified with a VkStructureType""" def __init__(self, name, stype):