blob: bbccc176ec7aa791b5464453302e085db4f63e09 [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,
26 const char *name, void **addr);
27
28void extensions_create_instance(struct loader_instance *ptr_instance,
29 const VkInstanceCreateInfo *pCreateInfo);
30
31// 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);