Update for Vulkan-Docs 1.3.299
This commit is contained in:
parent
d91597a82f
commit
b955ae0edb
12 changed files with 632 additions and 737 deletions
|
|
@ -185,7 +185,7 @@ class VulkanConventions(ConventionsBase):
|
|||
For Vulkan, these are names with a case-insensitive 'vk' prefix, or
|
||||
a 'PFN_vk' function pointer type prefix.
|
||||
"""
|
||||
return name[0:2].lower() == 'vk' or name[0:6] == 'PFN_vk'
|
||||
return name[0:2].lower() == 'vk' or name.startswith('PFN_vk')
|
||||
|
||||
def specURL(self, spectype='api'):
|
||||
"""Return public registry URL which ref pages should link to for the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue