Update for Vulkan-Docs 1.1.130

This commit is contained in:
Jon Leech 2019-12-09 00:18:00 -08:00 committed by Jon Leech
parent 2b89fd4e27
commit 0e57fc1cfa
6 changed files with 8137 additions and 8427 deletions

View file

@ -61,6 +61,15 @@ class VulkanConventions(ConventionsBase):
"""Preferred spelling of NULL."""
return '`NULL`'
@property
def struct_macro(self):
"""Get the appropriate format macro for a structure.
Primarily affects generated valid usage statements.
"""
return 'slink:'
@property
def constFlagBits(self):
"""Returns True if static const flag bits should be generated, False if an enumerated type should be generated."""