blob: 717596503c180d8cb2e5549354cc424800f8369d [file] [log] [blame]
Mark Lobodzinski317574e2016-08-29 14:21:14 -06001/*
2 * Copyright (c) 2015-2016 The Khronos Group Inc.
3 * Copyright (c) 2015-2016 Valve Corporation
4 * Copyright (c) 2015-2016 LunarG, Inc.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 * Author: Mark Lobodzinski <mark@lunarg.com>
19 *
20 */
21
22#include "vk_loader_platform.h"
23#include "loader.h"
24
25bool extension_instance_gpa(struct loader_instance *ptr_instance,
Mark Young35159af2016-09-07 08:50:32 -060026 const char *name, void **addr);
Mark Lobodzinski317574e2016-08-29 14:21:14 -060027
28void extensions_create_instance(struct loader_instance *ptr_instance,
29 const VkInstanceCreateInfo *pCreateInfo);
30
Mark Young65cb3662016-11-07 13:27:02 -070031// Definitions for the VK_EXT_debug_marker extension
32
33
34VKAPI_ATTR VkResult VKAPI_CALL terminator_DebugMarkerSetObjectTagEXT(
35 VkDevice device, VkDebugMarkerObjectTagInfoEXT *pTagInfo);
36
37VKAPI_ATTR VkResult VKAPI_CALL terminator_DebugMarkerSetObjectNameEXT(
38 VkDevice device, VkDebugMarkerObjectNameInfoEXT *pNameInfo);
39
Mark Lobodzinski317574e2016-08-29 14:21:14 -060040// Definitions for the VK_NV_external_memory_capabilities extension
41
42VKAPI_ATTR VkResult VKAPI_CALL
43terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV(
44 VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type,
45 VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags,
46 VkExternalMemoryHandleTypeFlagsNV externalHandleType,
47 VkExternalImageFormatPropertiesNV *pExternalImageFormatProperties);
Mark Youngfa552782016-12-12 16:14:55 -070048
49// Instance extension terminators for the VK_NVX_device_generated_commands
50// extension
51VKAPI_ATTR void VKAPI_CALL
52terminator_GetPhysicalDeviceGeneratedCommandsPropertiesNVX(
53 VkPhysicalDevice physicalDevice,
54 VkDeviceGeneratedCommandsFeaturesNVX *pFeatures,
55 VkDeviceGeneratedCommandsLimitsNVX *pLimits);