blob: cf64a68d53a5f0ec5752a2f982de5f6843423606 [file] [log] [blame]
Ian Elliottd3ef02f2015-07-06 14:36:13 -06001/*
Ian Elliottd3ef02f2015-07-06 14:36:13 -06002 *
3 * Copyright (C) 2015 LunarG, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jon Ashburn <jon@lunarg.com>
25 * Courtney Goeltzenleuchter <courtney@lunarg.com>
26 * Ian Elliott <ian@lunarg.com>
27 */
28
29#include "vk_loader_platform.h"
30#include "loader.h"
Ian Elliott7e40db92015-08-21 15:09:33 -060031#include "vk_ext_khr_swapchain.h"
Ian Elliottd3ef02f2015-07-06 14:36:13 -060032
33void wsi_swapchain_add_instance_extensions(
Jon Ashburne39a4f82015-08-28 13:38:21 -060034 const struct loader_instance *inst,
Ian Elliottd3ef02f2015-07-06 14:36:13 -060035 struct loader_extension_list *ext_list);
36
37void wsi_swapchain_create_instance(
38 struct loader_instance *ptr_instance,
39 const VkInstanceCreateInfo *pCreateInfo);
40
Ian Elliottd3ef02f2015-07-06 14:36:13 -060041
Ian Elliott7e40db92015-08-21 15:09:33 -060042VkResult VKAPI loader_GetPhysicalDeviceSurfaceSupportKHR(
Ian Elliottd3ef02f2015-07-06 14:36:13 -060043 VkPhysicalDevice physicalDevice,
44 uint32_t queueNodeIndex,
Ian Elliott7e40db92015-08-21 15:09:33 -060045 const VkSurfaceDescriptionKHR* pSurfaceDescription,
Ian Elliottd3ef02f2015-07-06 14:36:13 -060046 VkBool32* pSupported);