Update for Vulkan-Docs 1.2.133
This commit is contained in:
parent
7264358702
commit
9bd3f561bc
7 changed files with 6106 additions and 1393 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue