Update for Vulkan-Docs 1.2.133

This commit is contained in:
Jon Leech
2020-02-15 18:41:58 -08:00
committed by Jon Leech
parent 7264358702
commit 9bd3f561bc
7 changed files with 6106 additions and 1393 deletions

View File

@@ -350,3 +350,12 @@ class ConventionsBase:
Must implement."""
raise NotImplementedError
def valid_flag_bit(self, bitpos):
"""Return True if bitpos is an allowed numeric bit position for
an API flag.
Behavior depends on the data type used for flags (which may be 32
or 64 bits), and may depend on assumptions about compiler
handling of sign bits in enumerated types, as well."""
return True