Update for Vulkan-Docs 1.3.253
This commit is contained in:
parent
605dc6d3e7
commit
cb71b646f1
19 changed files with 5694 additions and 1689 deletions
|
|
@ -1021,6 +1021,30 @@ class OutputGenerator:
|
|||
Extend to generate as desired in your derived class."""
|
||||
return
|
||||
|
||||
def genSyncStage(self, stageinfo):
|
||||
"""Generate interface for a sync stage element.
|
||||
|
||||
- stageinfo - SyncStageInfo
|
||||
|
||||
Extend to generate as desired in your derived class."""
|
||||
return
|
||||
|
||||
def genSyncAccess(self, accessinfo):
|
||||
"""Generate interface for a sync stage element.
|
||||
|
||||
- accessinfo - AccessInfo
|
||||
|
||||
Extend to generate as desired in your derived class."""
|
||||
return
|
||||
|
||||
def genSyncPipeline(self, pipelineinfo):
|
||||
"""Generate interface for a sync stage element.
|
||||
|
||||
- pipelineinfo - SyncPipelineInfo
|
||||
|
||||
Extend to generate as desired in your derived class."""
|
||||
return
|
||||
|
||||
def makeProtoName(self, name, tail):
|
||||
"""Turn a `<proto>` `<name>` into C-language prototype
|
||||
and typedef declarations for that name.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue