1#!/usr/bin/python3 -i
2#
3# Copyright 2021-2023 The Khronos Group Inc.
4# SPDX-License-Identifier: Apache-2.0
5
6# Generic alias for working group-specific API conventions interface.
7
8# This import should be changed at the repository / working group level to
9# specify the correct API's conventions.
10
11
12import os
13
14defaultAPI = 'vulkan'
15
16VulkanAPI = os.getenv('VULKAN_API', default=defaultAPI)
17
18if VulkanAPI == 'vulkansc':
19    from vkconventions import VulkanSCConventions as APIConventions
20else:
21    from vkconventions import VulkanConventions as APIConventions
22