blob: c84fd86992395cb8f2cf8e0f27dbe68c2dc93fc7 [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 Young35159af2016-09-07 08:50:32 -060031void extensions_create_device(struct loader_device *dev,
32 const VkDeviceCreateInfo *pCreateInfo);
33
Mark Lobodzinski317574e2016-08-29 14:21:14 -060034// Definitions for the VK_NV_external_memory_capabilities extension
35
36VKAPI_ATTR VkResult VKAPI_CALL
37terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV(
38 VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type,
39 VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags,
40 VkExternalMemoryHandleTypeFlagsNV externalHandleType,
41 VkExternalImageFormatPropertiesNV *pExternalImageFormatProperties);