Home
last modified time | relevance | path

Searched refs:VulkanType (Results 1 – 5 of 5) sorted by relevance

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/
Dapi_log_decoder.py4 from . import VulkanType, VulkanCompoundType
192 def process_type(self, type: VulkanType): argument
301 def using_big_endian(self, type: VulkanType): argument
305 def get_length_expression(self, type: VulkanType) -> Optional[str]: argument
Dsubdecode.py2 from .common.vulkantypes import VulkanAPI, iterateVulkanType, VulkanType
156 self.params: list[VulkanType] = []
157 self.toRead: list[VulkanType] = []
158 self.toWrite: list[VulkanType] = []
Ddecoder.py3 VulkanType
190 def emit_dispatch_unmarshal(typeInfo: VulkanTypeInfo, param: VulkanType, cgen, globalWrapped): argument
235 self.params: list[VulkanType] = []
236 self.toRead: list[VulkanType] = []
237 self.toWrite: list[VulkanType] = []
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/common/
Dvulkantypes.py307 class VulkanType(object): class
310 self.parent: Optional[VulkanType] = None
685 def makeVulkanTypeFromXMLTag(typeInfo, parentName: str, tag: Element) -> VulkanType:
686 res = VulkanType()
794 res = VulkanType()
809 …def __init__(self, name: str, members: List[VulkanType], isUnion=False, structEnumExpr=None, struc… argument
812 self.members: List[VulkanType] = members
832 def getMember(self, memberName) -> Optional[VulkanType]:
849 def __init__(self, name: str, retType: VulkanType, parameters, origName=None): argument
852 self.retType: VulkanType = retType
[all …]
Dcodegen.py16 from .vulkantypes import VulkanType, VulkanTypeInfo, VulkanCompoundType, VulkanAPI