Update for Vulkan-Docs 1.3.252
This commit is contained in:
parent
3df77fb3e4
commit
605dc6d3e7
16 changed files with 2007 additions and 429 deletions
|
|
@ -8,4 +8,14 @@
|
|||
# This import should be changed at the repository / working group level to
|
||||
# specify the correct API's conventions.
|
||||
|
||||
from vkconventions import VulkanConventions as APIConventions
|
||||
|
||||
import os
|
||||
|
||||
defaultAPI = 'vulkan'
|
||||
|
||||
VulkanAPI = os.getenv('VULKAN_API', default=defaultAPI)
|
||||
|
||||
if VulkanAPI == 'vulkansc':
|
||||
from vkconventions import VulkanSCConventions as APIConventions
|
||||
else:
|
||||
from vkconventions import VulkanConventions as APIConventions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue