blob: 651d5f56511f9d49115a1666224ceca2d8ba5854 [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 Lobodzinski317574e2016-08-29 14:21:14 -060031// Definitions for the VK_NV_external_memory_capabilities extension
32
33VKAPI_ATTR VkResult VKAPI_CALL
34terminator_GetPhysicalDeviceExternalImageFormatPropertiesNV(
35 VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type,
36 VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags,
37 VkExternalMemoryHandleTypeFlagsNV externalHandleType,
38 VkExternalImageFormatPropertiesNV *pExternalImageFormatProperties);