blob: 8edbd6562aae5d682781554c10b6346317c8626f [file] [log] [blame]
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09001/*
Ian Elliottd940ca22017-03-22 08:31:27 -06002 * 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: Chia-I Wu <olv@lunarg.com>
19 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
20 * Author: Ian Elliott <ian@LunarG.com>
21 * Author: Ian Elliott <ianelliott@google.com>
22 * Author: Jon Ashburn <jon@lunarg.com>
23 * Author: Gwan-gyeong Mun <elongbug@gmail.com>
24 * Author: Tony Barbour <tony@LunarG.com>
25 * Author: Bill Hollings <bill.hollings@brenwill.com>
26 */
Karl Schultze4dc75c2016-02-02 15:37:51 -070027
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -060028#define _GNU_SOURCE
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -060029#include <stdio.h>
Ian Elliottd940ca22017-03-22 08:31:27 -060030#include <stdarg.h>
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -060031#include <stdlib.h>
32#include <string.h>
33#include <stdbool.h>
34#include <assert.h>
Courtney Goeltzenleuchteraf1951c2015-12-01 14:11:38 -070035#include <signal.h>
Mun Gwan-gyeong22533892016-08-20 14:46:22 +090036#if defined(VK_USE_PLATFORM_XLIB_KHR) || defined(VK_USE_PLATFORM_XCB_KHR)
Tony Barbour2593b182016-04-19 10:57:58 -060037#include <X11/Xutil.h>
Joey Bzdek15eb0702017-06-07 09:40:36 -060038#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
39#include <linux/input.h>
Tony Barbour2593b182016-04-19 10:57:58 -060040#endif
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -060041
Ian Elliott639ca472015-04-16 15:23:05 -060042#ifdef _WIN32
43#pragma comment(linker, "/subsystem:windows")
Ian Elliott639ca472015-04-16 15:23:05 -060044#define APP_NAME_STR_LEN 80
Mark Lobodzinski85dbd822017-01-26 13:34:13 -070045#endif // _WIN32
Ian Elliott639ca472015-04-16 15:23:05 -060046
Tony Barbourefd0c5a2016-12-07 14:45:12 -070047#if defined(VK_USE_PLATFORM_MIR_KHR)
48#warning "Cube does not have code for Mir at this time"
49#endif
50
Cody Northrop8707a6e2016-04-26 19:59:19 -060051#ifdef ANDROID
52#include "vulkan_wrapper.h"
53#else
David Pinedoc5193c12015-11-06 12:54:48 -070054#include <vulkan/vulkan.h>
Cody Northrop8707a6e2016-04-26 19:59:19 -060055#endif
Ian Elliottb08e0d92015-11-20 11:55:46 -070056
David Pinedo541526f2015-11-24 09:00:24 -070057#include <vulkan/vk_sdk_platform.h>
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -060058#include "linmath.h"
Mark Lobodzinski0edf1382018-04-10 15:40:04 -060059#include "object_type_string_helper.h"
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -060060
Ian Elliottd940ca22017-03-22 08:31:27 -060061#include "gettime.h"
62#include "inttypes.h"
63#define MILLION 1000000L
64#define BILLION 1000000000L
65
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -060066#define DEMO_TEXTURE_COUNT 1
Ian Elliott44e33f72015-04-28 10:52:52 -060067#define APP_SHORT_NAME "cube"
68#define APP_LONG_NAME "The Vulkan Cube Demo Program"
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -060069
Tony Barbour66a56c32016-09-21 13:10:56 -060070// Allow a maximum of two outstanding presentation operations.
71#define FRAME_LAG 2
72
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -060073#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
74
Tony Barbourfdc2d352015-04-22 09:02:32 -060075#if defined(NDEBUG) && defined(__GNUC__)
76#define U_ASSERT_ONLY __attribute__((unused))
77#else
78#define U_ASSERT_ONLY
79#endif
80
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +090081#if defined(__GNUC__)
82#define UNUSED __attribute__((unused))
83#else
84#define UNUSED
85#endif
86
Ian Elliott07264132015-04-28 11:35:02 -060087#ifdef _WIN32
Tony Barbour602ca4f2016-09-12 14:02:43 -060088bool in_callback = false;
Mark Lobodzinski85dbd822017-01-26 13:34:13 -070089#define ERR_EXIT(err_msg, err_class) \
90 do { \
91 if (!demo->suppress_popups) MessageBox(NULL, err_msg, err_class, MB_OK); \
92 exit(1); \
Karl Schultze4dc75c2016-02-02 15:37:51 -070093 } while (0)
Ian Elliottd940ca22017-03-22 08:31:27 -060094void DbgMsg(char *fmt, ...) {
95 va_list va;
96 va_start(va, fmt);
97 printf(fmt, va);
98 fflush(stdout);
99 va_end(va);
100}
Ian Elliott07264132015-04-28 11:35:02 -0600101
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500102#elif defined __ANDROID__
103#include <android/log.h>
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700104#define ERR_EXIT(err_msg, err_class) \
105 do { \
106 ((void)__android_log_print(ANDROID_LOG_INFO, "Cube", err_msg)); \
107 exit(1); \
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500108 } while (0)
Ian Elliottd940ca22017-03-22 08:31:27 -0600109#ifdef VARARGS_WORKS_ON_ANDROID
110void DbgMsg(const char *fmt, ...) {
111 va_list va;
112 va_start(va, fmt);
113 __android_log_print(ANDROID_LOG_INFO, "Cube", fmt, va);
114 va_end(va);
115}
116#else // VARARGS_WORKS_ON_ANDROID
117#define DbgMsg(fmt, ...) \
118 do { \
119 ((void)__android_log_print(ANDROID_LOG_INFO, "Cube", fmt, ##__VA_ARGS__)); \
120 } while (0)
121#endif // VARARGS_WORKS_ON_ANDROID
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500122#else
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700123#define ERR_EXIT(err_msg, err_class) \
124 do { \
Robert Morell4ccc6522017-02-01 14:51:00 -0800125 printf("%s\n", err_msg); \
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700126 fflush(stdout); \
127 exit(1); \
Karl Schultze4dc75c2016-02-02 15:37:51 -0700128 } while (0)
Ian Elliottd940ca22017-03-22 08:31:27 -0600129void DbgMsg(char *fmt, ...) {
130 va_list va;
131 va_start(va, fmt);
132 printf(fmt, va);
133 fflush(stdout);
134 va_end(va);
135}
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500136#endif
Ian Elliott07264132015-04-28 11:35:02 -0600137
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700138#define GET_INSTANCE_PROC_ADDR(inst, entrypoint) \
139 { \
140 demo->fp##entrypoint = (PFN_vk##entrypoint)vkGetInstanceProcAddr(inst, "vk" #entrypoint); \
141 if (demo->fp##entrypoint == NULL) { \
142 ERR_EXIT("vkGetInstanceProcAddr failed to find vk" #entrypoint, "vkGetInstanceProcAddr Failure"); \
143 } \
Karl Schultze4dc75c2016-02-02 15:37:51 -0700144 }
Ian Elliottaaae5352015-07-06 14:27:58 -0600145
Jon Ashburn7d8342c2015-10-08 15:58:23 -0600146static PFN_vkGetDeviceProcAddr g_gdpa = NULL;
147
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700148#define GET_DEVICE_PROC_ADDR(dev, entrypoint) \
149 { \
150 if (!g_gdpa) g_gdpa = (PFN_vkGetDeviceProcAddr)vkGetInstanceProcAddr(demo->inst, "vkGetDeviceProcAddr"); \
151 demo->fp##entrypoint = (PFN_vk##entrypoint)g_gdpa(dev, "vk" #entrypoint); \
152 if (demo->fp##entrypoint == NULL) { \
153 ERR_EXIT("vkGetDeviceProcAddr failed to find vk" #entrypoint, "vkGetDeviceProcAddr Failure"); \
154 } \
Karl Schultze4dc75c2016-02-02 15:37:51 -0700155 }
Ian Elliott673898b2015-06-22 15:07:49 -0600156
Courtney Goeltzenleuchter97db1c12014-10-30 15:14:16 -0600157/*
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -0700158 * structure to track all objects related to a texture.
159 */
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600160struct texture_object {
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600161 VkSampler sampler;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -0700162
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600163 VkImage image;
164 VkImageLayout imageLayout;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600165
Chia-I Wua8fe78a2015-10-27 18:04:07 +0800166 VkMemoryAllocateInfo mem_alloc;
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -0500167 VkDeviceMemory mem;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600168 VkImageView view;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -0700169 int32_t tex_width, tex_height;
170};
171
Karl Schultze4dc75c2016-02-02 15:37:51 -0700172static char *tex_files[] = {"lunarg.ppm"};
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600173
Karl Schultz0218c002016-03-22 17:06:13 -0600174static int validation_error = 0;
175
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -0600176struct vktexcube_vs_uniform {
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600177 // Must start with MVP
Karl Schultze4dc75c2016-02-02 15:37:51 -0700178 float mvp[4][4];
179 float position[12 * 3][4];
180 float attr[12 * 3][4];
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600181};
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -0600182
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600183//--------------------------------------------------------------------------------------
184// Mesh and VertexFormat Data
185//--------------------------------------------------------------------------------------
Karl Schultze4dc75c2016-02-02 15:37:51 -0700186// clang-format off
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -0600187static const float g_vertex_buffer_data[] = {
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800188 -1.0f,-1.0f,-1.0f, // -X side
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600189 -1.0f,-1.0f, 1.0f,
190 -1.0f, 1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800191 -1.0f, 1.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600192 -1.0f, 1.0f,-1.0f,
193 -1.0f,-1.0f,-1.0f,
194
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800195 -1.0f,-1.0f,-1.0f, // -Z side
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600196 1.0f, 1.0f,-1.0f,
197 1.0f,-1.0f,-1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800198 -1.0f,-1.0f,-1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600199 -1.0f, 1.0f,-1.0f,
Mike Stroyan16b3d982015-03-19 14:29:04 -0600200 1.0f, 1.0f,-1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600201
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800202 -1.0f,-1.0f,-1.0f, // -Y side
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600203 1.0f,-1.0f,-1.0f,
Mike Stroyan16b3d982015-03-19 14:29:04 -0600204 1.0f,-1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800205 -1.0f,-1.0f,-1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600206 1.0f,-1.0f, 1.0f,
Mike Stroyan16b3d982015-03-19 14:29:04 -0600207 -1.0f,-1.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600208
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800209 -1.0f, 1.0f,-1.0f, // +Y side
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600210 -1.0f, 1.0f, 1.0f,
211 1.0f, 1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800212 -1.0f, 1.0f,-1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600213 1.0f, 1.0f, 1.0f,
Mike Stroyan16b3d982015-03-19 14:29:04 -0600214 1.0f, 1.0f,-1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600215
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800216 1.0f, 1.0f,-1.0f, // +X side
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600217 1.0f, 1.0f, 1.0f,
218 1.0f,-1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800219 1.0f,-1.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600220 1.0f,-1.0f,-1.0f,
221 1.0f, 1.0f,-1.0f,
222
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800223 -1.0f, 1.0f, 1.0f, // +Z side
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600224 -1.0f,-1.0f, 1.0f,
Mike Stroyan16b3d982015-03-19 14:29:04 -0600225 1.0f, 1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800226 -1.0f,-1.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600227 1.0f,-1.0f, 1.0f,
228 1.0f, 1.0f, 1.0f,
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600229};
230
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -0600231static const float g_uv_buffer_data[] = {
Rene Lindsay76867e82016-07-29 10:49:11 -0700232 0.0f, 1.0f, // -X side
233 1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800234 1.0f, 0.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800235 1.0f, 0.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600236 0.0f, 0.0f,
237 0.0f, 1.0f,
238
Rene Lindsay76867e82016-07-29 10:49:11 -0700239 1.0f, 1.0f, // -Z side
240 0.0f, 0.0f,
241 0.0f, 1.0f,
242 1.0f, 1.0f,
243 1.0f, 0.0f,
244 0.0f, 0.0f,
245
246 1.0f, 0.0f, // -Y side
247 1.0f, 1.0f,
248 0.0f, 1.0f,
249 1.0f, 0.0f,
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -0600250 0.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800251 0.0f, 0.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600252
Rene Lindsay76867e82016-07-29 10:49:11 -0700253 1.0f, 0.0f, // +Y side
254 0.0f, 0.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800255 0.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600256 1.0f, 0.0f,
Rene Lindsay76867e82016-07-29 10:49:11 -0700257 0.0f, 1.0f,
Mike Stroyan16b3d982015-03-19 14:29:04 -0600258 1.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600259
Rene Lindsay76867e82016-07-29 10:49:11 -0700260 1.0f, 0.0f, // +X side
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800261 0.0f, 0.0f,
Rene Lindsay76867e82016-07-29 10:49:11 -0700262 0.0f, 1.0f,
263 0.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600264 1.0f, 1.0f,
Chia-I Wuae3b55d2015-04-22 14:56:17 +0800265 1.0f, 0.0f,
Rene Lindsay76867e82016-07-29 10:49:11 -0700266
267 0.0f, 0.0f, // +Z side
268 0.0f, 1.0f,
269 1.0f, 0.0f,
270 0.0f, 1.0f,
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -0600271 1.0f, 1.0f,
Rene Lindsay76867e82016-07-29 10:49:11 -0700272 1.0f, 0.0f,
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600273};
Karl Schultze4dc75c2016-02-02 15:37:51 -0700274// clang-format on
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600275
Karl Schultze4dc75c2016-02-02 15:37:51 -0700276void dumpMatrix(const char *note, mat4x4 MVP) {
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600277 int i;
278
279 printf("%s: \n", note);
Karl Schultze4dc75c2016-02-02 15:37:51 -0700280 for (i = 0; i < 4; i++) {
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600281 printf("%f, %f, %f, %f\n", MVP[i][0], MVP[i][1], MVP[i][2], MVP[i][3]);
282 }
283 printf("\n");
284 fflush(stdout);
285}
286
Karl Schultze4dc75c2016-02-02 15:37:51 -0700287void dumpVec4(const char *note, vec4 vector) {
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600288 printf("%s: \n", note);
Karl Schultze4dc75c2016-02-02 15:37:51 -0700289 printf("%f, %f, %f, %f\n", vector[0], vector[1], vector[2], vector[3]);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600290 printf("\n");
291 fflush(stdout);
292}
293
Mark Lobodzinski4c62d002016-05-19 17:22:25 -0600294typedef struct {
Ian Elliottaaae5352015-07-06 14:27:58 -0600295 VkImage image;
Chia-I Wua8fe78a2015-10-27 18:04:07 +0800296 VkCommandBuffer cmd;
Tony Barbour22e06272016-09-07 16:07:56 -0600297 VkCommandBuffer graphics_to_present_cmd;
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -0600298 VkImageView view;
Tony Barboura72d9492017-01-11 13:35:09 -0700299 VkBuffer uniform_buffer;
300 VkDeviceMemory uniform_memory;
301 VkFramebuffer framebuffer;
302 VkDescriptorSet descriptor_set;
Tony Barboura72d9492017-01-11 13:35:09 -0700303} SwapchainImageResources;
Ian Elliottaaae5352015-07-06 14:27:58 -0600304
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600305struct demo {
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500306#if defined(VK_USE_PLATFORM_WIN32_KHR)
Ian Elliott639ca472015-04-16 15:23:05 -0600307#define APP_NAME_STR_LEN 80
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700308 HINSTANCE connection; // hInstance - Windows Instance
309 char name[APP_NAME_STR_LEN]; // Name to put on the window/icon
310 HWND window; // hWnd - window handle
311 POINT minsize; // minimum window size
Tony Barbour153cb062016-12-07 13:43:36 -0700312#elif defined(VK_USE_PLATFORM_XLIB_KHR)
Mark Lobodzinski2dbc2662017-01-26 12:16:30 -0700313 Display *display;
Tony Barbour2593b182016-04-19 10:57:58 -0600314 Window xlib_window;
315 Atom xlib_wm_delete_window;
Tony Barbour153cb062016-12-07 13:43:36 -0700316#elif defined(VK_USE_PLATFORM_XCB_KHR)
Mark Lobodzinski2dbc2662017-01-26 12:16:30 -0700317 Display *display;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600318 xcb_connection_t *connection;
319 xcb_screen_t *screen;
Tony Barbour2593b182016-04-19 10:57:58 -0600320 xcb_window_t xcb_window;
Chia-I Wucbb564e2015-04-16 22:02:10 +0800321 xcb_intern_atom_reply_t *atom_wm_delete_window;
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +0900322#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
323 struct wl_display *display;
324 struct wl_registry *registry;
325 struct wl_compositor *compositor;
326 struct wl_surface *window;
327 struct wl_shell *shell;
328 struct wl_shell_surface *shell_surface;
Joey Bzdek15eb0702017-06-07 09:40:36 -0600329 struct wl_seat *seat;
330 struct wl_pointer *pointer;
331 struct wl_keyboard *keyboard;
Tony Barbourefd0c5a2016-12-07 14:45:12 -0700332#elif defined(VK_USE_PLATFORM_MIR_KHR)
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500333#elif defined(VK_USE_PLATFORM_ANDROID_KHR)
Mike Schuchardt837d5162018-03-08 12:57:02 -0700334 struct ANativeWindow *window;
Bill Hollingsf4352142017-02-14 22:58:56 -0500335#elif (defined(VK_USE_PLATFORM_IOS_MVK) || defined(VK_USE_PLATFORM_MACOS_MVK))
336 void *window;
Michael Lentinec6cde4b2016-04-18 13:20:45 -0500337#endif
Ian Elliottb08e0d92015-11-20 11:55:46 -0700338 VkSurfaceKHR surface;
Cody Northrop1fedb212015-05-28 11:27:16 -0600339 bool prepared;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -0700340 bool use_staging_buffer;
Tony Barbour22e06272016-09-07 16:07:56 -0600341 bool separate_present_queue;
Jeremy Kniager602e4182018-01-19 10:52:34 -0700342 bool is_minimized;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600343
Ian Elliott53622a72017-03-28 11:06:33 -0600344 bool VK_KHR_incremental_present_enabled;
345
Ian Elliottd940ca22017-03-22 08:31:27 -0600346 bool VK_GOOGLE_display_timing_enabled;
347 bool syncd_with_actual_presents;
348 uint64_t refresh_duration;
349 uint64_t refresh_duration_multiplier;
350 uint64_t target_IPD; // image present duration (inverse of frame rate)
351 uint64_t prev_desired_present_time;
352 uint32_t next_present_id;
353 uint32_t last_early_id; // 0 if no early images
354 uint32_t last_late_id; // 0 if no late images
355
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600356 VkInstance inst;
Tony Barbour72304ef2015-04-16 15:59:00 -0600357 VkPhysicalDevice gpu;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600358 VkDevice device;
Tony Barboura2a67812016-07-18 13:21:06 -0600359 VkQueue graphics_queue;
360 VkQueue present_queue;
361 uint32_t graphics_queue_family_index;
362 uint32_t present_queue_family_index;
Tony Barbour66a56c32016-09-21 13:10:56 -0600363 VkSemaphore image_acquired_semaphores[FRAME_LAG];
364 VkSemaphore draw_complete_semaphores[FRAME_LAG];
365 VkSemaphore image_ownership_semaphores[FRAME_LAG];
Tony Barbourecf1b2b2015-06-24 16:06:58 -0600366 VkPhysicalDeviceProperties gpu_props;
Cody Northrop4d3c11d2015-08-03 17:04:53 -0600367 VkQueueFamilyProperties *queue_props;
Mark Lobodzinskieadf9982015-07-02 16:49:40 -0600368 VkPhysicalDeviceMemoryProperties memory_properties;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600369
Tony Barbourda2bad52016-01-22 14:36:40 -0700370 uint32_t enabled_extension_count;
371 uint32_t enabled_layer_count;
372 char *extension_names[64];
Karl Schultz5b423ea2016-06-20 19:08:43 -0600373 char *enabled_layers[64];
Tony Barbourda2bad52016-01-22 14:36:40 -0700374
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600375 int width, height;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600376 VkFormat format;
Ian Elliotta0781972015-08-21 15:09:33 -0600377 VkColorSpaceKHR color_space;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600378
Mark Lobodzinski2dbc2662017-01-26 12:16:30 -0700379 PFN_vkGetPhysicalDeviceSurfaceSupportKHR fpGetPhysicalDeviceSurfaceSupportKHR;
380 PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR fpGetPhysicalDeviceSurfaceCapabilitiesKHR;
381 PFN_vkGetPhysicalDeviceSurfaceFormatsKHR fpGetPhysicalDeviceSurfaceFormatsKHR;
382 PFN_vkGetPhysicalDeviceSurfacePresentModesKHR fpGetPhysicalDeviceSurfacePresentModesKHR;
Ian Elliotta0781972015-08-21 15:09:33 -0600383 PFN_vkCreateSwapchainKHR fpCreateSwapchainKHR;
384 PFN_vkDestroySwapchainKHR fpDestroySwapchainKHR;
385 PFN_vkGetSwapchainImagesKHR fpGetSwapchainImagesKHR;
386 PFN_vkAcquireNextImageKHR fpAcquireNextImageKHR;
387 PFN_vkQueuePresentKHR fpQueuePresentKHR;
Ian Elliottd940ca22017-03-22 08:31:27 -0600388 PFN_vkGetRefreshCycleDurationGOOGLE fpGetRefreshCycleDurationGOOGLE;
389 PFN_vkGetPastPresentationTimingGOOGLE fpGetPastPresentationTimingGOOGLE;
Ian Elliotta0781972015-08-21 15:09:33 -0600390 uint32_t swapchainImageCount;
Ian Elliottcf074d32015-10-16 18:02:43 -0600391 VkSwapchainKHR swapchain;
Tony Barboura72d9492017-01-11 13:35:09 -0700392 SwapchainImageResources *swapchain_image_resources;
Tony Barbour291d57b2016-10-21 14:47:07 -0600393 VkPresentModeKHR presentMode;
Tony Barbour66a56c32016-09-21 13:10:56 -0600394 VkFence fences[FRAME_LAG];
Tony Barbour66a56c32016-09-21 13:10:56 -0600395 int frame_index;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600396
Chia-I Wua8fe78a2015-10-27 18:04:07 +0800397 VkCommandPool cmd_pool;
Tony Barbour22e06272016-09-07 16:07:56 -0600398 VkCommandPool present_cmd_pool;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600399
400 struct {
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600401 VkFormat format;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600402
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600403 VkImage image;
Chia-I Wua8fe78a2015-10-27 18:04:07 +0800404 VkMemoryAllocateInfo mem_alloc;
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -0500405 VkDeviceMemory mem;
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -0600406 VkImageView view;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600407 } depth;
408
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600409 struct texture_object textures[DEMO_TEXTURE_COUNT];
Tony Barbour16156cb2016-10-19 14:15:49 -0600410 struct texture_object staging_texture;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600411
Mark Lobodzinski85dbd822017-01-26 13:34:13 -0700412 VkCommandBuffer cmd; // Buffer for initialization commands
Mark Lobodzinski1cfc7722015-04-17 14:11:39 -0500413 VkPipelineLayout pipeline_layout;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600414 VkDescriptorSetLayout desc_layout;
Jon Ashburnc4ab7af2015-07-09 15:02:25 -0600415 VkPipelineCache pipelineCache;
Chia-I Wuf973e322015-07-08 13:34:24 +0800416 VkRenderPass render_pass;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600417 VkPipeline pipeline;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600418
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -0600419 mat4x4 projection_matrix;
420 mat4x4 view_matrix;
421 mat4x4 model_matrix;
422
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -0600423 float spin_angle;
424 float spin_increment;
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -0600425 bool pause;
426
Tony Barbourb6dba5c2015-07-21 09:04:41 -0600427 VkShaderModule vert_shader_module;
428 VkShaderModule frag_shader_module;
429
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600430 VkDescriptorPool desc_pool;
Chia-I Wuf973e322015-07-08 13:34:24 +0800431
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600432 bool quit;
David Pinedo2bb7c932015-06-18 17:03:14 -0600433 int32_t curFrame;
434 int32_t frameCount;
Tony Barbour3dddd5d2015-04-29 16:19:20 -0600435 bool validate;
Tobin Ehlis4eb29d62017-03-14 11:29:01 -0600436 bool validate_checks_disabled;
Courtney Goeltzenleuchter03f4b772015-07-22 11:03:51 -0600437 bool use_break;
lenny-lunargfbe22392016-06-06 11:07:53 -0600438 bool suppress_popups;
Mark Young66510e52017-11-10 10:05:14 -0700439
440 PFN_vkCreateDebugUtilsMessengerEXT CreateDebugUtilsMessengerEXT;
441 PFN_vkDestroyDebugUtilsMessengerEXT DestroyDebugUtilsMessengerEXT;
442 PFN_vkSubmitDebugUtilsMessageEXT SubmitDebugUtilsMessageEXT;
443 PFN_vkCmdBeginDebugUtilsLabelEXT CmdBeginDebugUtilsLabelEXT;
444 PFN_vkCmdEndDebugUtilsLabelEXT CmdEndDebugUtilsLabelEXT;
445 PFN_vkCmdInsertDebugUtilsLabelEXT CmdInsertDebugUtilsLabelEXT;
446 PFN_vkSetDebugUtilsObjectNameEXT SetDebugUtilsObjectNameEXT;
447 VkDebugUtilsMessengerEXT dbg_messenger;
Courtney Goeltzenleuchter922a0fa2015-06-10 17:39:03 -0600448
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -0600449 uint32_t current_buffer;
Tony Barbourab2a0362016-09-06 11:40:12 -0600450 uint32_t queue_family_count;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600451};
452
Mark Young66510e52017-11-10 10:05:14 -0700453VKAPI_ATTR VkBool32 VKAPI_CALL debug_messenger_callback(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity,
454 VkDebugUtilsMessageTypeFlagsEXT messageType,
455 const VkDebugUtilsMessengerCallbackDataEXT *pCallbackData,
456 void *pUserData) {
457 char prefix[64] = "";
458 char *message = (char *)malloc(strlen(pCallbackData->pMessage) + 5000);
lenny-lunargfbe22392016-06-06 11:07:53 -0600459 assert(message);
Mark Young66510e52017-11-10 10:05:14 -0700460 struct demo *demo = (struct demo *)pUserData;
lenny-lunargfbe22392016-06-06 11:07:53 -0600461
Mark Young66510e52017-11-10 10:05:14 -0700462 if (demo->use_break) {
463#ifndef WIN32
464 raise(SIGTRAP);
465#else
466 DebugBreak();
467#endif
468 }
469
470 if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT) {
471 strcat(prefix, "VERBOSE : ");
472 } else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT) {
473 strcat(prefix, "INFO : ");
474 } else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT) {
475 strcat(prefix, "WARNING : ");
476 } else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT) {
477 strcat(prefix, "ERROR : ");
478 }
479
480 if (messageType & VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT) {
481 strcat(prefix, "GENERAL");
lenny-lunargfbe22392016-06-06 11:07:53 -0600482 } else {
Mark Young66510e52017-11-10 10:05:14 -0700483 if (messageType & VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT) {
484 strcat(prefix, "VALIDATION");
485 validation_error = 1;
486 }
487 if (messageType & VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT) {
488 if (messageType & VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT) {
489 strcat(prefix, "|");
490 }
491 strcat(prefix, "PERFORMANCE");
492 }
493 }
494
495 sprintf(message, "%s - Message Id Number: %d | Message Id Name: %s\n\t%s\n", prefix, pCallbackData->messageIdNumber,
496 pCallbackData->pMessageIdName, pCallbackData->pMessage);
497 if (pCallbackData->objectCount > 0) {
498 char tmp_message[500];
499 sprintf(tmp_message, "\n\tObjects - %d\n", pCallbackData->objectCount);
500 strcat(message, tmp_message);
501 for (uint32_t object = 0; object < pCallbackData->objectCount; ++object) {
502 if (NULL != pCallbackData->pObjects[object].pObjectName && strlen(pCallbackData->pObjects[object].pObjectName) > 0) {
503 sprintf(tmp_message, "\t\tObject[%d] - %s, Handle %p, Name \"%s\"\n", object,
Mark Young44212682018-02-21 15:29:41 -0700504 string_VkObjectType(pCallbackData->pObjects[object].objectType),
Mark Young66510e52017-11-10 10:05:14 -0700505 (void *)(pCallbackData->pObjects[object].objectHandle), pCallbackData->pObjects[object].pObjectName);
506 } else {
507 sprintf(tmp_message, "\t\tObject[%d] - %s, Handle %p\n", object,
Mark Young44212682018-02-21 15:29:41 -0700508 string_VkObjectType(pCallbackData->pObjects[object].objectType),
Mark Young66510e52017-11-10 10:05:14 -0700509 (void *)(pCallbackData->pObjects[object].objectHandle));
510 }
511 strcat(message, tmp_message);
512 }
513 }
514 if (pCallbackData->cmdBufLabelCount > 0) {
515 char tmp_message[500];
516 sprintf(tmp_message, "\n\tCommand Buffer Labels - %d\n", pCallbackData->cmdBufLabelCount);
517 strcat(message, tmp_message);
518 for (uint32_t cmd_buf_label = 0; cmd_buf_label < pCallbackData->cmdBufLabelCount; ++cmd_buf_label) {
519 sprintf(tmp_message, "\t\tLabel[%d] - %s { %f, %f, %f, %f}\n", cmd_buf_label,
520 pCallbackData->pCmdBufLabels[cmd_buf_label].pLabelName, pCallbackData->pCmdBufLabels[cmd_buf_label].color[0],
521 pCallbackData->pCmdBufLabels[cmd_buf_label].color[1], pCallbackData->pCmdBufLabels[cmd_buf_label].color[2],
522 pCallbackData->pCmdBufLabels[cmd_buf_label].color[3]);
523 strcat(message, tmp_message);
524 }
lenny-lunargfbe22392016-06-06 11:07:53 -0600525 }
526
527#ifdef _WIN32
Cody Northropaf28a532016-09-27 10:50:57 -0600528
Tony Barbour602ca4f2016-09-12 14:02:43 -0600529 in_callback = true;
lenny-lunargfbe22392016-06-06 11:07:53 -0600530 if (!demo->suppress_popups)
531 MessageBox(NULL, message, "Alert", MB_OK);
Tony Barbour602ca4f2016-09-12 14:02:43 -0600532 in_callback = false;
Cody Northropaf28a532016-09-27 10:50:57 -0600533
Cody Northropc5e5a8c2016-09-26 21:05:00 -0600534#elif defined(ANDROID)
Cody Northropaf28a532016-09-27 10:50:57 -0600535
Mike Schuchardt837d5162018-03-08 12:57:02 -0700536 if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT) {
Cody Northropaf28a532016-09-27 10:50:57 -0600537 __android_log_print(ANDROID_LOG_INFO, APP_SHORT_NAME, "%s", message);
Mike Schuchardt837d5162018-03-08 12:57:02 -0700538 } else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT) {
Cody Northropaf28a532016-09-27 10:50:57 -0600539 __android_log_print(ANDROID_LOG_WARN, APP_SHORT_NAME, "%s", message);
Mike Schuchardt837d5162018-03-08 12:57:02 -0700540 } else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT) {
Cody Northropaf28a532016-09-27 10:50:57 -0600541 __android_log_print(ANDROID_LOG_ERROR, APP_SHORT_NAME, "%s", message);
Mike Schuchardt837d5162018-03-08 12:57:02 -0700542 } else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT) {
543 __android_log_print(ANDROID_LOG_VERBOSE, APP_SHORT_NAME, "%s", message);
Cody Northropc5e5a8c2016-09-26 21:05:00 -0600544 } else {
Cody Northropaf28a532016-09-27 10:50:57 -0600545 __android_log_print(ANDROID_LOG_INFO, APP_SHORT_NAME, "%s", message);
Cody Northropc5e5a8c2016-09-26 21:05:00 -0600546 }
Cody Northropaf28a532016-09-27 10:50:57 -0600547
lenny-lunargfbe22392016-06-06 11:07:53 -0600548#else
Cody Northropaf28a532016-09-27 10:50:57 -0600549
lenny-lunargfbe22392016-06-06 11:07:53 -0600550 printf("%s\n", message);
551 fflush(stdout);
Cody Northropaf28a532016-09-27 10:50:57 -0600552
lenny-lunargfbe22392016-06-06 11:07:53 -0600553#endif
Cody Northropaf28a532016-09-27 10:50:57 -0600554
lenny-lunargfbe22392016-06-06 11:07:53 -0600555 free(message);
556
Mark Young66510e52017-11-10 10:05:14 -0700557 // Don't bail out, but keep going.
lenny-lunargfbe22392016-06-06 11:07:53 -0600558 return false;
559}
560
Ian Elliottd940ca22017-03-22 08:31:27 -0600561bool ActualTimeLate(uint64_t desired, uint64_t actual, uint64_t rdur) {
562 // The desired time was the earliest time that the present should have
563 // occured. In almost every case, the actual time should be later than the
564 // desired time. We should only consider the actual time "late" if it is
565 // after "desired + rdur".
566 if (actual <= desired) {
567 // The actual time was before or equal to the desired time. This will
568 // probably never happen, but in case it does, return false since the
569 // present was obviously NOT late.
570 return false;
571 }
Liam Middlebrook881fe392018-05-03 15:52:32 -0700572 uint64_t deadline = desired + rdur;
Ian Elliottd940ca22017-03-22 08:31:27 -0600573 if (actual > deadline) {
574 return true;
575 } else {
576 return false;
577 }
578}
Dave Houlton5fa47912018-02-16 11:02:26 -0700579bool CanPresentEarlier(uint64_t earliest, uint64_t actual, uint64_t margin, uint64_t rdur) {
Ian Elliottd940ca22017-03-22 08:31:27 -0600580 if (earliest < actual) {
581 // Consider whether this present could have occured earlier. Make sure
582 // that earliest time was at least 2msec earlier than actual time, and
583 // that the margin was at least 2msec:
584 uint64_t diff = actual - earliest;
585 if ((diff >= (2 * MILLION)) && (margin >= (2 * MILLION))) {
586 // This present could have occured earlier because both: 1) the
587 // earliest time was at least 2 msec before actual time, and 2) the
588 // margin was at least 2msec.
589 return true;
590 }
591 }
592 return false;
593}
594
Ian Elliottcf074d32015-10-16 18:02:43 -0600595// Forward declaration:
596static void demo_resize(struct demo *demo);
597
Dave Houlton5fa47912018-02-16 11:02:26 -0700598static bool memory_type_from_properties(struct demo *demo, uint32_t typeBits, VkFlags requirements_mask, uint32_t *typeIndex) {
Karl Schultze4dc75c2016-02-02 15:37:51 -0700599 // Search memtypes to find first index with those properties
Alexandre BACQUART89eb8df2016-04-28 14:25:09 -0600600 for (uint32_t i = 0; i < VK_MAX_MEMORY_TYPES; i++) {
Karl Schultze4dc75c2016-02-02 15:37:51 -0700601 if ((typeBits & 1) == 1) {
602 // Type is available, does it match user properties?
Dave Houlton5fa47912018-02-16 11:02:26 -0700603 if ((demo->memory_properties.memoryTypes[i].propertyFlags & requirements_mask) == requirements_mask) {
Karl Schultze4dc75c2016-02-02 15:37:51 -0700604 *typeIndex = i;
605 return true;
606 }
607 }
608 typeBits >>= 1;
609 }
610 // No memory types matched, return failure
611 return false;
Mark Lobodzinskieadf9982015-07-02 16:49:40 -0600612}
613
Karl Schultze4dc75c2016-02-02 15:37:51 -0700614static void demo_flush_init_cmd(struct demo *demo) {
Tony Barbourfdc2d352015-04-22 09:02:32 -0600615 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600616
Tony Barbource7524e2016-07-28 12:01:45 -0600617 // This function could get called twice if the texture uses a staging buffer
618 // In that case the second call should be ignored
Dave Houlton5fa47912018-02-16 11:02:26 -0700619 if (demo->cmd == VK_NULL_HANDLE) return;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600620
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -0600621 err = vkEndCommandBuffer(demo->cmd);
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600622 assert(!err);
623
Tony Barbource7524e2016-07-28 12:01:45 -0600624 VkFence fence;
Dave Houlton5fa47912018-02-16 11:02:26 -0700625 VkFenceCreateInfo fence_ci = {.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO, .pNext = NULL, .flags = 0};
Tony Barboura72d9492017-01-11 13:35:09 -0700626 err = vkCreateFence(demo->device, &fence_ci, NULL, &fence);
627 assert(!err);
628
Karl Schultze4dc75c2016-02-02 15:37:51 -0700629 const VkCommandBuffer cmd_bufs[] = {demo->cmd};
Karl Schultze4dc75c2016-02-02 15:37:51 -0700630 VkSubmitInfo submit_info = {.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO,
631 .pNext = NULL,
632 .waitSemaphoreCount = 0,
633 .pWaitSemaphores = NULL,
634 .pWaitDstStageMask = NULL,
635 .commandBufferCount = 1,
636 .pCommandBuffers = cmd_bufs,
637 .signalSemaphoreCount = 0,
638 .pSignalSemaphores = NULL};
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600639
Tony Barbource7524e2016-07-28 12:01:45 -0600640 err = vkQueueSubmit(demo->graphics_queue, 1, &submit_info, fence);
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600641 assert(!err);
642
Tony Barbource7524e2016-07-28 12:01:45 -0600643 err = vkWaitForFences(demo->device, 1, &fence, VK_TRUE, UINT64_MAX);
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600644 assert(!err);
645
Courtney Goeltzenleuchter014ded82015-10-23 14:21:05 -0600646 vkFreeCommandBuffers(demo->device, demo->cmd_pool, 1, cmd_bufs);
Tony Barbource7524e2016-07-28 12:01:45 -0600647 vkDestroyFence(demo->device, fence, NULL);
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -0600648 demo->cmd = VK_NULL_HANDLE;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600649}
650
Dave Houlton5fa47912018-02-16 11:02:26 -0700651static void demo_set_image_layout(struct demo *demo, VkImage image, VkImageAspectFlags aspectMask, VkImageLayout old_image_layout,
652 VkImageLayout new_image_layout, VkAccessFlagBits srcAccessMask, VkPipelineStageFlags src_stages,
Tony Barbour5ff13182016-10-19 13:58:29 -0600653 VkPipelineStageFlags dest_stages) {
Tony Barbour6db4fcb2016-10-19 13:41:16 -0600654 assert(demo->cmd);
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600655
Dave Houlton5fa47912018-02-16 11:02:26 -0700656 VkImageMemoryBarrier image_memory_barrier = {.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
657 .pNext = NULL,
658 .srcAccessMask = srcAccessMask,
659 .dstAccessMask = 0,
Tony-LunarGa141b962018-05-30 11:33:19 -0600660 .srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
661 .dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
Dave Houlton5fa47912018-02-16 11:02:26 -0700662 .oldLayout = old_image_layout,
663 .newLayout = new_image_layout,
664 .image = image,
665 .subresourceRange = {aspectMask, 0, 1, 0, 1}};
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600666
Tony Barboureb5077b2016-10-19 15:23:36 -0600667 switch (new_image_layout) {
Dave Houlton5fa47912018-02-16 11:02:26 -0700668 case VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL:
669 /* Make sure anything that was copying from this image has completed */
670 image_memory_barrier.dstAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
671 break;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600672
Dave Houlton5fa47912018-02-16 11:02:26 -0700673 case VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL:
674 image_memory_barrier.dstAccessMask = VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT;
675 break;
Mark Lobodzinski9e0be702015-11-04 13:49:48 -0700676
Dave Houlton5fa47912018-02-16 11:02:26 -0700677 case VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL:
678 image_memory_barrier.dstAccessMask = VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT;
679 break;
Mark Lobodzinski9e0be702015-11-04 13:49:48 -0700680
Dave Houlton5fa47912018-02-16 11:02:26 -0700681 case VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL:
682 image_memory_barrier.dstAccessMask = VK_ACCESS_SHADER_READ_BIT | VK_ACCESS_INPUT_ATTACHMENT_READ_BIT;
683 break;
Tony Barboureb5077b2016-10-19 15:23:36 -0600684
Dave Houlton5fa47912018-02-16 11:02:26 -0700685 case VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL:
686 image_memory_barrier.dstAccessMask = VK_ACCESS_TRANSFER_READ_BIT;
687 break;
Tony Barboureb5077b2016-10-19 15:23:36 -0600688
Dave Houlton5fa47912018-02-16 11:02:26 -0700689 case VK_IMAGE_LAYOUT_PRESENT_SRC_KHR:
690 image_memory_barrier.dstAccessMask = VK_ACCESS_MEMORY_READ_BIT;
691 break;
Tony Barboureb5077b2016-10-19 15:23:36 -0600692
Dave Houlton5fa47912018-02-16 11:02:26 -0700693 default:
694 image_memory_barrier.dstAccessMask = 0;
695 break;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600696 }
697
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -0600698 VkImageMemoryBarrier *pmemory_barrier = &image_memory_barrier;
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600699
Dave Houlton5fa47912018-02-16 11:02:26 -0700700 vkCmdPipelineBarrier(demo->cmd, src_stages, dest_stages, 0, 0, NULL, 0, NULL, 1, pmemory_barrier);
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -0600701}
702
Karl Schultze4dc75c2016-02-02 15:37:51 -0700703static void demo_draw_build_cmd(struct demo *demo, VkCommandBuffer cmd_buf) {
Lenny Komowe830b592018-02-23 16:18:36 -0700704 VkDebugUtilsLabelEXT label;
705 memset(&label, 0, sizeof(label));
Jon Ashburn0bec67e2016-01-11 13:12:43 -0700706 const VkCommandBufferBeginInfo cmd_buf_info = {
707 .sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO,
708 .pNext = NULL,
Tony Barbource7524e2016-07-28 12:01:45 -0600709 .flags = VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT,
Rene Lindsayd787e3a2016-07-07 16:00:14 -0700710 .pInheritanceInfo = NULL,
Jon Ashburn0bec67e2016-01-11 13:12:43 -0700711 };
Chia-I Wua74c5b22015-07-07 11:50:03 +0800712 const VkClearValue clear_values[2] = {
Dave Houlton5fa47912018-02-16 11:02:26 -0700713 [0] = {.color.float32 = {0.2f, 0.2f, 0.2f, 0.2f}},
714 [1] = {.depthStencil = {1.0f, 0}},
Chia-I Wua74c5b22015-07-07 11:50:03 +0800715 };
716 const VkRenderPassBeginInfo rp_begin = {
717 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
718 .pNext = NULL,
Chia-I Wuf973e322015-07-08 13:34:24 +0800719 .renderPass = demo->render_pass,
Tony Barboura72d9492017-01-11 13:35:09 -0700720 .framebuffer = demo->swapchain_image_resources[demo->current_buffer].framebuffer,
Chia-I Wua74c5b22015-07-07 11:50:03 +0800721 .renderArea.offset.x = 0,
722 .renderArea.offset.y = 0,
723 .renderArea.extent.width = demo->width,
724 .renderArea.extent.height = demo->height,
Cody Northrop372bbae2015-08-04 11:51:03 -0600725 .clearValueCount = 2,
726 .pClearValues = clear_values,
Jon Ashburn08f6eb92015-01-02 18:24:05 -0700727 };
Chia-I Wuf973e322015-07-08 13:34:24 +0800728 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600729
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -0600730 err = vkBeginCommandBuffer(cmd_buf, &cmd_buf_info);
Mark Young66510e52017-11-10 10:05:14 -0700731
732 if (demo->validate) {
733 // Set a name for the command buffer
734 VkDebugUtilsObjectNameInfoEXT cmd_buf_name = {
735 .sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT,
736 .pNext = NULL,
737 .objectType = VK_OBJECT_TYPE_COMMAND_BUFFER,
738 .objectHandle = (uint64_t)cmd_buf,
739 .pObjectName = "CubeDrawCommandBuf",
740 };
741 demo->SetDebugUtilsObjectNameEXT(demo->device, &cmd_buf_name);
742
743 label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
744 label.pNext = NULL;
745 label.pLabelName = "DrawBegin";
746 label.color[0] = 0.4f;
747 label.color[1] = 0.3f;
748 label.color[2] = 0.2f;
749 label.color[3] = 0.1f;
750 demo->CmdBeginDebugUtilsLabelEXT(cmd_buf, &label);
751 }
752
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600753 assert(!err);
Chia-I Wuf051d262015-10-27 19:25:11 +0800754 vkCmdBeginRenderPass(cmd_buf, &rp_begin, VK_SUBPASS_CONTENTS_INLINE);
Mark Young66510e52017-11-10 10:05:14 -0700755
756 if (demo->validate) {
757 label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
758 label.pNext = NULL;
759 label.pLabelName = "InsideRenderPass";
760 label.color[0] = 8.4f;
761 label.color[1] = 7.3f;
762 label.color[2] = 6.2f;
763 label.color[3] = 7.1f;
764 demo->CmdBeginDebugUtilsLabelEXT(cmd_buf, &label);
765 }
766
Karl Schultze4dc75c2016-02-02 15:37:51 -0700767 vkCmdBindPipeline(cmd_buf, VK_PIPELINE_BIND_POINT_GRAPHICS, demo->pipeline);
Dave Houlton5fa47912018-02-16 11:02:26 -0700768 vkCmdBindDescriptorSets(cmd_buf, VK_PIPELINE_BIND_POINT_GRAPHICS, demo->pipeline_layout, 0, 1,
769 &demo->swapchain_image_resources[demo->current_buffer].descriptor_set, 0, NULL);
Courtney Goeltzenleuchter4cbf78b2015-09-17 15:06:17 -0600770 VkViewport viewport;
771 memset(&viewport, 0, sizeof(viewport));
Karl Schultze4dc75c2016-02-02 15:37:51 -0700772 viewport.height = (float)demo->height;
773 viewport.width = (float)demo->width;
774 viewport.minDepth = (float)0.0f;
775 viewport.maxDepth = (float)1.0f;
Jon Ashburn19255f82015-12-30 14:06:55 -0700776 vkCmdSetViewport(cmd_buf, 0, 1, &viewport);
Courtney Goeltzenleuchter4cbf78b2015-09-17 15:06:17 -0600777
778 VkRect2D scissor;
779 memset(&scissor, 0, sizeof(scissor));
780 scissor.extent.width = demo->width;
781 scissor.extent.height = demo->height;
782 scissor.offset.x = 0;
783 scissor.offset.y = 0;
Jon Ashburn19255f82015-12-30 14:06:55 -0700784 vkCmdSetScissor(cmd_buf, 0, 1, &scissor);
Mark Young66510e52017-11-10 10:05:14 -0700785
786 if (demo->validate) {
787 label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
788 label.pNext = NULL;
789 label.pLabelName = "ActualDraw";
Mike Schuchardt4cf3aa42018-02-23 12:44:05 -0700790 label.color[0] = -0.4f;
791 label.color[1] = -0.3f;
792 label.color[2] = -0.2f;
793 label.color[3] = -0.1f;
Mark Young66510e52017-11-10 10:05:14 -0700794 demo->CmdBeginDebugUtilsLabelEXT(cmd_buf, &label);
795 }
796
Courtney Goeltzenleuchter332a3672015-09-23 12:31:50 -0600797 vkCmdDraw(cmd_buf, 12 * 3, 1, 0, 0);
Mark Young66510e52017-11-10 10:05:14 -0700798 if (demo->validate) {
799 demo->CmdEndDebugUtilsLabelEXT(cmd_buf);
800 }
801
Tony Barbour98390392016-07-28 10:50:13 -0600802 // Note that ending the renderpass changes the image's layout from
Tony Barbour22e06272016-09-07 16:07:56 -0600803 // COLOR_ATTACHMENT_OPTIMAL to PRESENT_SRC_KHR
Chia-I Wu57b23b42015-06-26 15:34:39 +0800804 vkCmdEndRenderPass(cmd_buf);
Mark Young66510e52017-11-10 10:05:14 -0700805 if (demo->validate) {
806 demo->CmdEndDebugUtilsLabelEXT(cmd_buf);
807 }
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600808
Tony Barbour22e06272016-09-07 16:07:56 -0600809 if (demo->separate_present_queue) {
810 // We have to transfer ownership from the graphics queue family to the
811 // present queue family to be able to present. Note that we don't have
812 // to transfer from present queue family back to graphics queue family at
813 // the start of the next frame because we don't care about the image's
814 // contents at that point.
Dave Houlton5fa47912018-02-16 11:02:26 -0700815 VkImageMemoryBarrier image_ownership_barrier = {.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
816 .pNext = NULL,
817 .srcAccessMask = 0,
Tony-LunarG4ba65cd2018-05-30 14:53:14 -0600818 .dstAccessMask = 0,
Dave Houlton5fa47912018-02-16 11:02:26 -0700819 .oldLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
820 .newLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
821 .srcQueueFamilyIndex = demo->graphics_queue_family_index,
822 .dstQueueFamilyIndex = demo->present_queue_family_index,
823 .image = demo->swapchain_image_resources[demo->current_buffer].image,
824 .subresourceRange = {VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1}};
Tony Barbour22e06272016-09-07 16:07:56 -0600825
Tony-LunarG4ba65cd2018-05-30 14:53:14 -0600826 vkCmdPipelineBarrier(cmd_buf, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, 0, 0, NULL, 0,
827 NULL, 1, &image_ownership_barrier);
Tony Barbour22e06272016-09-07 16:07:56 -0600828 }
Mark Young66510e52017-11-10 10:05:14 -0700829 if (demo->validate) {
830 demo->CmdEndDebugUtilsLabelEXT(cmd_buf);
831 }
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -0600832 err = vkEndCommandBuffer(cmd_buf);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600833 assert(!err);
834}
835
Tony Barbour22e06272016-09-07 16:07:56 -0600836void demo_build_image_ownership_cmd(struct demo *demo, int i) {
837 VkResult U_ASSERT_ONLY err;
838
839 const VkCommandBufferBeginInfo cmd_buf_info = {
840 .sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO,
841 .pNext = NULL,
842 .flags = VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT,
843 .pInheritanceInfo = NULL,
844 };
Dave Houlton5fa47912018-02-16 11:02:26 -0700845 err = vkBeginCommandBuffer(demo->swapchain_image_resources[i].graphics_to_present_cmd, &cmd_buf_info);
Tony Barbour22e06272016-09-07 16:07:56 -0600846 assert(!err);
847
Dave Houlton5fa47912018-02-16 11:02:26 -0700848 VkImageMemoryBarrier image_ownership_barrier = {.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
849 .pNext = NULL,
850 .srcAccessMask = 0,
Tony-LunarG4ba65cd2018-05-30 14:53:14 -0600851 .dstAccessMask = 0,
Dave Houlton5fa47912018-02-16 11:02:26 -0700852 .oldLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
853 .newLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
854 .srcQueueFamilyIndex = demo->graphics_queue_family_index,
855 .dstQueueFamilyIndex = demo->present_queue_family_index,
856 .image = demo->swapchain_image_resources[i].image,
857 .subresourceRange = {VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1}};
Tony Barbour22e06272016-09-07 16:07:56 -0600858
Tony-LunarG4ba65cd2018-05-30 14:53:14 -0600859 vkCmdPipelineBarrier(demo->swapchain_image_resources[i].graphics_to_present_cmd, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT,
860 VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, 0, 0, NULL, 0, NULL, 1, &image_ownership_barrier);
Tony Barboura72d9492017-01-11 13:35:09 -0700861 err = vkEndCommandBuffer(demo->swapchain_image_resources[i].graphics_to_present_cmd);
Tony Barbour22e06272016-09-07 16:07:56 -0600862 assert(!err);
863}
864
Karl Schultze4dc75c2016-02-02 15:37:51 -0700865void demo_update_data_buffer(struct demo *demo) {
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -0600866 mat4x4 MVP, Model, VP;
867 int matrixSize = sizeof(MVP);
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -0600868 uint8_t *pData;
Tony Barbourfdc2d352015-04-22 09:02:32 -0600869 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600870
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -0600871 mat4x4_mul(VP, demo->projection_matrix, demo->view_matrix);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600872
Karl Schultz6ddf1e02017-01-04 10:31:20 -0700873 // Rotate around the Y axis
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600874 mat4x4_dup(Model, demo->model_matrix);
Dave Houlton5fa47912018-02-16 11:02:26 -0700875 mat4x4_rotate(demo->model_matrix, Model, 0.0f, 1.0f, 0.0f, (float)degreesToRadians(demo->spin_angle));
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -0600876 mat4x4_mul(MVP, VP, demo->model_matrix);
Courtney Goeltzenleuchterfc3b9532014-10-28 10:32:57 -0600877
Dave Houlton5fa47912018-02-16 11:02:26 -0700878 err = vkMapMemory(demo->device, demo->swapchain_image_resources[demo->current_buffer].uniform_memory, 0, VK_WHOLE_SIZE, 0,
879 (void **)&pData);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600880 assert(!err);
881
Karl Schultze4dc75c2016-02-02 15:37:51 -0700882 memcpy(pData, (const void *)&MVP[0][0], matrixSize);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600883
Tony Barboura72d9492017-01-11 13:35:09 -0700884 vkUnmapMemory(demo->device, demo->swapchain_image_resources[demo->current_buffer].uniform_memory);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -0600885}
886
Ian Elliottd940ca22017-03-22 08:31:27 -0600887void DemoUpdateTargetIPD(struct demo *demo) {
888 // Look at what happened to previous presents, and make appropriate
889 // adjustments in timing:
890 VkResult U_ASSERT_ONLY err;
Dave Houlton5fa47912018-02-16 11:02:26 -0700891 VkPastPresentationTimingGOOGLE *past = NULL;
Ian Elliottd940ca22017-03-22 08:31:27 -0600892 uint32_t count = 0;
Ian Elliottd940ca22017-03-22 08:31:27 -0600893
Dave Houlton5fa47912018-02-16 11:02:26 -0700894 err = demo->fpGetPastPresentationTimingGOOGLE(demo->device, demo->swapchain, &count, NULL);
Ian Elliottd940ca22017-03-22 08:31:27 -0600895 assert(!err);
Ian Elliottd940ca22017-03-22 08:31:27 -0600896 if (count) {
Dave Houlton5fa47912018-02-16 11:02:26 -0700897 past = (VkPastPresentationTimingGOOGLE *)malloc(sizeof(VkPastPresentationTimingGOOGLE) * count);
Ian Elliottd940ca22017-03-22 08:31:27 -0600898 assert(past);
Dave Houlton5fa47912018-02-16 11:02:26 -0700899 err = demo->fpGetPastPresentationTimingGOOGLE(demo->device, demo->swapchain, &count, past);
Ian Elliottd940ca22017-03-22 08:31:27 -0600900 assert(!err);
901
902 bool early = false;
903 bool late = false;
904 bool calibrate_next = false;
Dave Houlton5fa47912018-02-16 11:02:26 -0700905 for (uint32_t i = 0; i < count; i++) {
Ian Elliottd940ca22017-03-22 08:31:27 -0600906 if (!demo->syncd_with_actual_presents) {
907 // This is the first time that we've received an
908 // actualPresentTime for this swapchain. In order to not
909 // perceive these early frames as "late", we need to sync-up
910 // our future desiredPresentTime's with the
911 // actualPresentTime(s) that we're receiving now.
912 calibrate_next = true;
Ian Elliottd940ca22017-03-22 08:31:27 -0600913
Ian Elliottd940ca22017-03-22 08:31:27 -0600914 // So that we don't suspect any pending presents as late,
915 // record them all as suspected-late presents:
916 demo->last_late_id = demo->next_present_id - 1;
917 demo->last_early_id = 0;
Ian Elliottd940ca22017-03-22 08:31:27 -0600918 demo->syncd_with_actual_presents = true;
919 break;
Dave Houlton5fa47912018-02-16 11:02:26 -0700920 } else if (CanPresentEarlier(past[i].earliestPresentTime, past[i].actualPresentTime, past[i].presentMargin,
Ian Elliottd940ca22017-03-22 08:31:27 -0600921 demo->refresh_duration)) {
922 // This image could have been presented earlier. We don't want
923 // to decrease the target_IPD until we've seen early presents
924 // for at least two seconds.
925 if (demo->last_early_id == past[i].presentID) {
926 // We've now seen two seconds worth of early presents.
927 // Flag it as such, and reset the counter:
928 early = true;
929 demo->last_early_id = 0;
930 } else if (demo->last_early_id == 0) {
931 // This is the first early present we've seen.
932 // Calculate the presentID for two seconds from now.
Dave Houlton5fa47912018-02-16 11:02:26 -0700933 uint64_t lastEarlyTime = past[i].actualPresentTime + (2 * BILLION);
934 uint32_t howManyPresents = (uint32_t)((lastEarlyTime - past[i].actualPresentTime) / demo->target_IPD);
Ian Elliottd940ca22017-03-22 08:31:27 -0600935 demo->last_early_id = past[i].presentID + howManyPresents;
936 } else {
937 // We are in the midst of a set of early images,
938 // and so we won't do anything.
939 }
940 late = false;
941 demo->last_late_id = 0;
Dave Houlton5fa47912018-02-16 11:02:26 -0700942 } else if (ActualTimeLate(past[i].desiredPresentTime, past[i].actualPresentTime, demo->refresh_duration)) {
Ian Elliottd940ca22017-03-22 08:31:27 -0600943 // This image was presented after its desired time. Since
944 // there's a delay between calling vkQueuePresentKHR and when
945 // we get the timing data, several presents may have been late.
946 // Thus, we need to threat all of the outstanding presents as
947 // being likely late, so that we only increase the target_IPD
948 // once for all of those presents.
Dave Houlton5fa47912018-02-16 11:02:26 -0700949 if ((demo->last_late_id == 0) || (demo->last_late_id < past[i].presentID)) {
Ian Elliottd940ca22017-03-22 08:31:27 -0600950 late = true;
951 // Record the last suspected-late present:
952 demo->last_late_id = demo->next_present_id - 1;
953 } else {
954 // We are in the midst of a set of likely-late images,
955 // and so we won't do anything.
956 }
957 early = false;
958 demo->last_early_id = 0;
959 } else {
960 // Since this image was not presented early or late, reset
961 // any sets of early or late presentIDs:
962 early = false;
963 late = false;
964 calibrate_next = true;
965 demo->last_early_id = 0;
966 demo->last_late_id = 0;
967 }
968 }
969
970 if (early) {
971 // Since we've seen at least two-seconds worth of presnts that
972 // could have occured earlier than desired, let's decrease the
973 // target_IPD (i.e. increase the frame rate):
974 //
975 // TODO(ianelliott): Try to calculate a better target_IPD based
976 // on the most recently-seen present (this is overly-simplistic).
977 demo->refresh_duration_multiplier--;
978 if (demo->refresh_duration_multiplier == 0) {
979 // This should never happen, but in case it does, don't
980 // try to go faster.
981 demo->refresh_duration_multiplier = 1;
982 }
Dave Houlton5fa47912018-02-16 11:02:26 -0700983 demo->target_IPD = demo->refresh_duration * demo->refresh_duration_multiplier;
Ian Elliottd940ca22017-03-22 08:31:27 -0600984 }
985 if (late) {
986 // Since we found a new instance of a late present, we want to
987 // increase the target_IPD (i.e. decrease the frame rate):
988 //
989 // TODO(ianelliott): Try to calculate a better target_IPD based
990 // on the most recently-seen present (this is overly-simplistic).
991 demo->refresh_duration_multiplier++;
Dave Houlton5fa47912018-02-16 11:02:26 -0700992 demo->target_IPD = demo->refresh_duration * demo->refresh_duration_multiplier;
Ian Elliottd940ca22017-03-22 08:31:27 -0600993 }
994
995 if (calibrate_next) {
Dave Houlton5fa47912018-02-16 11:02:26 -0700996 int64_t multiple = demo->next_present_id - past[count - 1].presentID;
997 demo->prev_desired_present_time = (past[count - 1].actualPresentTime + (multiple * demo->target_IPD));
Ian Elliottd940ca22017-03-22 08:31:27 -0600998 }
Karl Schultza33771f2018-05-28 16:16:47 -0600999 free(past);
Ian Elliottd940ca22017-03-22 08:31:27 -06001000 }
Ian Elliottd940ca22017-03-22 08:31:27 -06001001}
1002
Karl Schultze4dc75c2016-02-02 15:37:51 -07001003static void demo_draw(struct demo *demo) {
Tony Barbourfdc2d352015-04-22 09:02:32 -06001004 VkResult U_ASSERT_ONLY err;
Tony Barboure35e8aa2016-06-20 10:44:08 -06001005
Damien Leonec336d822017-04-14 16:10:14 -07001006 // Ensure no more than FRAME_LAG renderings are outstanding
szdarkhackd322ff02016-10-08 09:51:22 +03001007 vkWaitForFences(demo->device, 1, &demo->fences[demo->frame_index], VK_TRUE, UINT64_MAX);
1008 vkResetFences(demo->device, 1, &demo->fences[demo->frame_index]);
Tony Barbour66a56c32016-09-21 13:10:56 -06001009
Tony Barbour8b7c9112017-06-29 13:34:41 -06001010 do {
Tony Barbour6914e6d2017-06-02 12:11:29 -06001011 // Get the index of the next available swapchain image:
Dave Houlton5fa47912018-02-16 11:02:26 -07001012 err =
1013 demo->fpAcquireNextImageKHR(demo->device, demo->swapchain, UINT64_MAX,
1014 demo->image_acquired_semaphores[demo->frame_index], VK_NULL_HANDLE, &demo->current_buffer);
Tony Barbour66a56c32016-09-21 13:10:56 -06001015
Tony Barbour6914e6d2017-06-02 12:11:29 -06001016 if (err == VK_ERROR_OUT_OF_DATE_KHR) {
1017 // demo->swapchain is out of date (e.g. the window was resized) and
1018 // must be recreated:
1019 demo_resize(demo);
1020 } else if (err == VK_SUBOPTIMAL_KHR) {
1021 // demo->swapchain is not as optimal as it could be, but the platform's
1022 // presentation engine will still present the image correctly.
1023 break;
1024 } else {
1025 assert(!err);
1026 }
Tony Barbour8b7c9112017-06-29 13:34:41 -06001027 } while (err != VK_SUCCESS);
Tony Barbour6914e6d2017-06-02 12:11:29 -06001028
Tony Barbour3eafe1f2017-06-14 11:59:55 -06001029 demo_update_data_buffer(demo);
1030
Ian Elliottd940ca22017-03-22 08:31:27 -06001031 if (demo->VK_GOOGLE_display_timing_enabled) {
1032 // Look at what happened to previous presents, and make appropriate
1033 // adjustments in timing:
1034 DemoUpdateTargetIPD(demo);
1035
1036 // Note: a real application would position its geometry to that it's in
1037 // the correct locatoin for when the next image is presented. It might
1038 // also wait, so that there's less latency between any input and when
1039 // the next image is rendered/presented. This demo program is so
1040 // simple that it doesn't do either of those.
1041 }
1042
Tony Barbource7524e2016-07-28 12:01:45 -06001043 // Wait for the image acquired semaphore to be signaled to ensure
Courtney Goeltzenleuchter5fa898d2015-10-20 18:04:07 -06001044 // that the image won't be rendered to until the presentation
1045 // engine has fully released ownership to the application, and it is
1046 // okay to render to the image.
Tony Barbour22e06272016-09-07 16:07:56 -06001047 VkPipelineStageFlags pipe_stage_flags;
1048 VkSubmitInfo submit_info;
1049 submit_info.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO;
1050 submit_info.pNext = NULL;
1051 submit_info.pWaitDstStageMask = &pipe_stage_flags;
1052 pipe_stage_flags = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT;
1053 submit_info.waitSemaphoreCount = 1;
Tony Barbour66a56c32016-09-21 13:10:56 -06001054 submit_info.pWaitSemaphores = &demo->image_acquired_semaphores[demo->frame_index];
Tony Barbour22e06272016-09-07 16:07:56 -06001055 submit_info.commandBufferCount = 1;
Tony Barboura72d9492017-01-11 13:35:09 -07001056 submit_info.pCommandBuffers = &demo->swapchain_image_resources[demo->current_buffer].cmd;
Tony Barbour22e06272016-09-07 16:07:56 -06001057 submit_info.signalSemaphoreCount = 1;
Tony Barbour66a56c32016-09-21 13:10:56 -06001058 submit_info.pSignalSemaphores = &demo->draw_complete_semaphores[demo->frame_index];
Dave Houlton5fa47912018-02-16 11:02:26 -07001059 err = vkQueueSubmit(demo->graphics_queue, 1, &submit_info, demo->fences[demo->frame_index]);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001060 assert(!err);
1061
Tony Barbour22e06272016-09-07 16:07:56 -06001062 if (demo->separate_present_queue) {
1063 // If we are using separate queues, change image ownership to the
1064 // present queue before presenting, waiting for the draw complete
1065 // semaphore and signalling the ownership released semaphore when finished
Tony Barboura72d9492017-01-11 13:35:09 -07001066 VkFence nullFence = VK_NULL_HANDLE;
Tony Barbour22e06272016-09-07 16:07:56 -06001067 pipe_stage_flags = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT;
1068 submit_info.waitSemaphoreCount = 1;
Tony Barbour66a56c32016-09-21 13:10:56 -06001069 submit_info.pWaitSemaphores = &demo->draw_complete_semaphores[demo->frame_index];
Tony Barbour22e06272016-09-07 16:07:56 -06001070 submit_info.commandBufferCount = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07001071 submit_info.pCommandBuffers = &demo->swapchain_image_resources[demo->current_buffer].graphics_to_present_cmd;
Tony Barbour22e06272016-09-07 16:07:56 -06001072 submit_info.signalSemaphoreCount = 1;
Tony Barbour66a56c32016-09-21 13:10:56 -06001073 submit_info.pSignalSemaphores = &demo->image_ownership_semaphores[demo->frame_index];
Tony Barbour22e06272016-09-07 16:07:56 -06001074 err = vkQueueSubmit(demo->present_queue, 1, &submit_info, nullFence);
1075 assert(!err);
1076 }
1077
1078 // If we are using separate queues we have to wait for image ownership,
1079 // otherwise wait for draw complete
Ian Elliotta0781972015-08-21 15:09:33 -06001080 VkPresentInfoKHR present = {
1081 .sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR,
Ian Elliottaaae5352015-07-06 14:27:58 -06001082 .pNext = NULL,
Ian Elliottcf7f7482016-08-19 03:46:58 -06001083 .waitSemaphoreCount = 1,
Dave Houlton5fa47912018-02-16 11:02:26 -07001084 .pWaitSemaphores = (demo->separate_present_queue) ? &demo->image_ownership_semaphores[demo->frame_index]
1085 : &demo->draw_complete_semaphores[demo->frame_index],
Ian Elliotta0781972015-08-21 15:09:33 -06001086 .swapchainCount = 1,
Ian Elliottb08e0d92015-11-20 11:55:46 -07001087 .pSwapchains = &demo->swapchain,
1088 .pImageIndices = &demo->current_buffer,
Ian Elliottaaae5352015-07-06 14:27:58 -06001089 };
1090
Ian Elliott53622a72017-03-28 11:06:33 -06001091 if (demo->VK_KHR_incremental_present_enabled) {
1092 // If using VK_KHR_incremental_present, we provide a hint of the region
1093 // that contains changed content relative to the previously-presented
1094 // image. The implementation can use this hint in order to save
1095 // work/power (by only copying the region in the hint). The
1096 // implementation is free to ignore the hint though, and so we must
1097 // ensure that the entire image has the correctly-drawn content.
1098 uint32_t eighthOfWidth = demo->width / 8;
1099 uint32_t eighthOfHeight = demo->height / 8;
1100 VkRectLayerKHR rect = {
1101 .offset.x = eighthOfWidth,
1102 .offset.y = eighthOfHeight,
1103 .extent.width = eighthOfWidth * 6,
1104 .extent.height = eighthOfHeight * 6,
1105 .layer = 0,
1106 };
1107 VkPresentRegionKHR region = {
1108 .rectangleCount = 1,
1109 .pRectangles = &rect,
1110 };
1111 VkPresentRegionsKHR regions = {
1112 .sType = VK_STRUCTURE_TYPE_PRESENT_REGIONS_KHR,
1113 .pNext = present.pNext,
1114 .swapchainCount = present.swapchainCount,
1115 .pRegions = &region,
1116 };
1117 present.pNext = &regions;
Ian Elliott53622a72017-03-28 11:06:33 -06001118 }
1119
Ian Elliottd940ca22017-03-22 08:31:27 -06001120 if (demo->VK_GOOGLE_display_timing_enabled) {
1121 VkPresentTimeGOOGLE ptime;
1122 if (demo->prev_desired_present_time == 0) {
1123 // This must be the first present for this swapchain.
1124 //
1125 // We don't know where we are relative to the presentation engine's
1126 // display's refresh cycle. We also don't know how long rendering
1127 // takes. Let's make a grossly-simplified assumption that the
1128 // desiredPresentTime should be half way between now and
1129 // now+target_IPD. We will adjust over time.
1130 uint64_t curtime = getTimeInNanoseconds();
1131 if (curtime == 0) {
1132 // Since we didn't find out the current time, don't give a
1133 // desiredPresentTime:
1134 ptime.desiredPresentTime = 0;
1135 } else {
Ian Elliottd940ca22017-03-22 08:31:27 -06001136 ptime.desiredPresentTime = curtime + (demo->target_IPD >> 1);
1137 }
1138 } else {
Dave Houlton5fa47912018-02-16 11:02:26 -07001139 ptime.desiredPresentTime = (demo->prev_desired_present_time + demo->target_IPD);
Ian Elliottd940ca22017-03-22 08:31:27 -06001140 }
1141 ptime.presentID = demo->next_present_id++;
1142 demo->prev_desired_present_time = ptime.desiredPresentTime;
Ian Elliottd940ca22017-03-22 08:31:27 -06001143
1144 VkPresentTimesInfoGOOGLE present_time = {
1145 .sType = VK_STRUCTURE_TYPE_PRESENT_TIMES_INFO_GOOGLE,
1146 .pNext = present.pNext,
1147 .swapchainCount = present.swapchainCount,
1148 .pTimes = &ptime,
1149 };
1150 if (demo->VK_GOOGLE_display_timing_enabled) {
1151 present.pNext = &present_time;
Ian Elliottd940ca22017-03-22 08:31:27 -06001152 }
1153 }
1154
Tony Barboura2a67812016-07-18 13:21:06 -06001155 err = demo->fpQueuePresentKHR(demo->present_queue, &present);
Tony Barbour66a56c32016-09-21 13:10:56 -06001156 demo->frame_index += 1;
1157 demo->frame_index %= FRAME_LAG;
1158
Ian Elliottcf074d32015-10-16 18:02:43 -06001159 if (err == VK_ERROR_OUT_OF_DATE_KHR) {
1160 // demo->swapchain is out of date (e.g. the window was resized) and
1161 // must be recreated:
1162 demo_resize(demo);
1163 } else if (err == VK_SUBOPTIMAL_KHR) {
1164 // demo->swapchain is not as optimal as it could be, but the platform's
1165 // presentation engine will still present the image correctly.
1166 } else {
1167 assert(!err);
1168 }
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001169}
1170
Karl Schultze4dc75c2016-02-02 15:37:51 -07001171static void demo_prepare_buffers(struct demo *demo) {
Ian Elliottaaae5352015-07-06 14:27:58 -06001172 VkResult U_ASSERT_ONLY err;
Ian Elliottcf074d32015-10-16 18:02:43 -06001173 VkSwapchainKHR oldSwapchain = demo->swapchain;
Ian Elliottaaae5352015-07-06 14:27:58 -06001174
Ian Elliottb08e0d92015-11-20 11:55:46 -07001175 // Check the surface capabilities and formats
1176 VkSurfaceCapabilitiesKHR surfCapabilities;
Dave Houlton5fa47912018-02-16 11:02:26 -07001177 err = demo->fpGetPhysicalDeviceSurfaceCapabilitiesKHR(demo->gpu, demo->surface, &surfCapabilities);
Ian Elliottaaae5352015-07-06 14:27:58 -06001178 assert(!err);
1179
Ian Elliott8528eff2015-08-07 15:56:59 -06001180 uint32_t presentModeCount;
Dave Houlton5fa47912018-02-16 11:02:26 -07001181 err = demo->fpGetPhysicalDeviceSurfacePresentModesKHR(demo->gpu, demo->surface, &presentModeCount, NULL);
Ian Elliottaaae5352015-07-06 14:27:58 -06001182 assert(!err);
Dave Houlton5fa47912018-02-16 11:02:26 -07001183 VkPresentModeKHR *presentModes = (VkPresentModeKHR *)malloc(presentModeCount * sizeof(VkPresentModeKHR));
Ian Elliott8528eff2015-08-07 15:56:59 -06001184 assert(presentModes);
Dave Houlton5fa47912018-02-16 11:02:26 -07001185 err = demo->fpGetPhysicalDeviceSurfacePresentModesKHR(demo->gpu, demo->surface, &presentModeCount, presentModes);
Ian Elliottaaae5352015-07-06 14:27:58 -06001186 assert(!err);
1187
Ian Elliotta0781972015-08-21 15:09:33 -06001188 VkExtent2D swapchainExtent;
Ian Elliottcf7f7482016-08-19 03:46:58 -06001189 // width and height are either both 0xFFFFFFFF, or both not 0xFFFFFFFF.
1190 if (surfCapabilities.currentExtent.width == 0xFFFFFFFF) {
1191 // If the surface size is undefined, the size is set to the size
1192 // of the images requested, which must fit within the minimum and
1193 // maximum values.
Ian Elliotta0781972015-08-21 15:09:33 -06001194 swapchainExtent.width = demo->width;
1195 swapchainExtent.height = demo->height;
Ian Elliottcf7f7482016-08-19 03:46:58 -06001196
1197 if (swapchainExtent.width < surfCapabilities.minImageExtent.width) {
1198 swapchainExtent.width = surfCapabilities.minImageExtent.width;
1199 } else if (swapchainExtent.width > surfCapabilities.maxImageExtent.width) {
1200 swapchainExtent.width = surfCapabilities.maxImageExtent.width;
1201 }
Dave Houlton5fa47912018-02-16 11:02:26 -07001202
Ian Elliottcf7f7482016-08-19 03:46:58 -06001203 if (swapchainExtent.height < surfCapabilities.minImageExtent.height) {
1204 swapchainExtent.height = surfCapabilities.minImageExtent.height;
1205 } else if (swapchainExtent.height > surfCapabilities.maxImageExtent.height) {
1206 swapchainExtent.height = surfCapabilities.maxImageExtent.height;
1207 }
Karl Schultze4dc75c2016-02-02 15:37:51 -07001208 } else {
Ian Elliottaaae5352015-07-06 14:27:58 -06001209 // If the surface size is defined, the swap chain size must match
Ian Elliottb08e0d92015-11-20 11:55:46 -07001210 swapchainExtent = surfCapabilities.currentExtent;
1211 demo->width = surfCapabilities.currentExtent.width;
1212 demo->height = surfCapabilities.currentExtent.height;
Ian Elliottaaae5352015-07-06 14:27:58 -06001213 }
1214
Jeremy Kniager602e4182018-01-19 10:52:34 -07001215 if (demo->width == 0 || demo->height == 0) {
1216 demo->is_minimized = true;
1217 return;
1218 } else {
1219 demo->is_minimized = false;
1220 }
1221
Tony Barbour66a56c32016-09-21 13:10:56 -06001222 // The FIFO present mode is guaranteed by the spec to be supported
Ian Elliottb18fdde2016-10-03 12:11:12 -06001223 // and to have no tearing. It's a great default present mode to use.
Ian Elliotta0781972015-08-21 15:09:33 -06001224 VkPresentModeKHR swapchainPresentMode = VK_PRESENT_MODE_FIFO_KHR;
Tony Barbour291d57b2016-10-21 14:47:07 -06001225
Ian Elliottb18fdde2016-10-03 12:11:12 -06001226 // There are times when you may wish to use another present mode. The
1227 // following code shows how to select them, and the comments provide some
1228 // reasons you may wish to use them.
1229 //
1230 // It should be noted that Vulkan 1.0 doesn't provide a method for
1231 // synchronizing rendering with the presentation engine's display. There
1232 // is a method provided for throttling rendering with the display, but
1233 // there are some presentation engines for which this method will not work.
1234 // If an application doesn't throttle its rendering, and if it renders much
1235 // faster than the refresh rate of the display, this can waste power on
1236 // mobile devices. That is because power is being spent rendering images
1237 // that may never be seen.
Tony Barbour291d57b2016-10-21 14:47:07 -06001238
Ian Elliottb18fdde2016-10-03 12:11:12 -06001239 // VK_PRESENT_MODE_IMMEDIATE_KHR is for applications that don't care about
1240 // tearing, or have some way of synchronizing their rendering with the
1241 // display.
Ian Elliottb18fdde2016-10-03 12:11:12 -06001242 // VK_PRESENT_MODE_MAILBOX_KHR may be useful for applications that
1243 // generally render a new presentable image every refresh cycle, but are
1244 // occasionally early. In this case, the application wants the new image
1245 // to be displayed instead of the previously-queued-for-presentation image
1246 // that has not yet been displayed.
Ian Elliottb18fdde2016-10-03 12:11:12 -06001247 // VK_PRESENT_MODE_FIFO_RELAXED_KHR is for applications that generally
1248 // render a new presentable image every refresh cycle, but are occasionally
1249 // late. In this case (perhaps because of stuttering/latency concerns),
1250 // the application wants the late image to be immediately displayed, even
1251 // though that may mean some tearing.
Tony Barbour291d57b2016-10-21 14:47:07 -06001252
Dave Houlton5fa47912018-02-16 11:02:26 -07001253 if (demo->presentMode != swapchainPresentMode) {
Tony Barbour291d57b2016-10-21 14:47:07 -06001254 for (size_t i = 0; i < presentModeCount; ++i) {
1255 if (presentModes[i] == demo->presentMode) {
1256 swapchainPresentMode = demo->presentMode;
1257 break;
1258 }
Ian Elliottb18fdde2016-10-03 12:11:12 -06001259 }
1260 }
Tony Barbour291d57b2016-10-21 14:47:07 -06001261 if (swapchainPresentMode != demo->presentMode) {
1262 ERR_EXIT("Present mode specified is not supported\n", "Present mode unsupported");
1263 }
Ian Elliottaaae5352015-07-06 14:27:58 -06001264
Tony Barbour84376fe2017-01-06 15:54:22 -07001265 // Determine the number of VkImages to use in the swap chain.
1266 // Application desires to acquire 3 images at a time for triple
1267 // buffering
1268 uint32_t desiredNumOfSwapchainImages = 3;
1269 if (desiredNumOfSwapchainImages < surfCapabilities.minImageCount) {
1270 desiredNumOfSwapchainImages = surfCapabilities.minImageCount;
1271 }
Ian Elliottcf7f7482016-08-19 03:46:58 -06001272 // If maxImageCount is 0, we can ask for as many images as we want;
1273 // otherwise we're limited to maxImageCount
Dave Houlton5fa47912018-02-16 11:02:26 -07001274 if ((surfCapabilities.maxImageCount > 0) && (desiredNumOfSwapchainImages > surfCapabilities.maxImageCount)) {
Ian Elliottaaae5352015-07-06 14:27:58 -06001275 // Application must settle for fewer images than desired:
Ian Elliottcf7f7482016-08-19 03:46:58 -06001276 desiredNumOfSwapchainImages = surfCapabilities.maxImageCount;
Ian Elliottaaae5352015-07-06 14:27:58 -06001277 }
1278
Tony Barbour9fd6d352015-09-16 15:01:32 -06001279 VkSurfaceTransformFlagsKHR preTransform;
Dave Houlton5fa47912018-02-16 11:02:26 -07001280 if (surfCapabilities.supportedTransforms & VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR) {
Ian Elliotta7a731c2015-12-11 15:52:12 -07001281 preTransform = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
Ian Elliottaaae5352015-07-06 14:27:58 -06001282 } else {
Ian Elliottb08e0d92015-11-20 11:55:46 -07001283 preTransform = surfCapabilities.currentTransform;
Ian Elliottaaae5352015-07-06 14:27:58 -06001284 }
1285
Tony Barbour820b55b2017-03-14 08:55:46 -06001286 // Find a supported composite alpha mode - one of these is guaranteed to be set
1287 VkCompositeAlphaFlagBitsKHR compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR;
1288 VkCompositeAlphaFlagBitsKHR compositeAlphaFlags[4] = {
1289 VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR,
1290 VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR,
1291 VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR,
1292 VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR,
1293 };
Tony Barbour34ea9cf2017-08-14 12:02:30 -06001294 for (uint32_t i = 0; i < ARRAY_SIZE(compositeAlphaFlags); i++) {
Tony Barbour820b55b2017-03-14 08:55:46 -06001295 if (surfCapabilities.supportedCompositeAlpha & compositeAlphaFlags[i]) {
1296 compositeAlpha = compositeAlphaFlags[i];
1297 break;
1298 }
1299 }
1300
Tony Barboura2a67812016-07-18 13:21:06 -06001301 VkSwapchainCreateInfoKHR swapchain_ci = {
Ian Elliott5b97eae2015-09-22 10:20:23 -06001302 .sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR,
Chia-I Wucbb564e2015-04-16 22:02:10 +08001303 .pNext = NULL,
Ian Elliottb08e0d92015-11-20 11:55:46 -07001304 .surface = demo->surface,
Ian Elliottcf7f7482016-08-19 03:46:58 -06001305 .minImageCount = desiredNumOfSwapchainImages,
Chia-I Wucbb564e2015-04-16 22:02:10 +08001306 .imageFormat = demo->format,
Ian Elliott8528eff2015-08-07 15:56:59 -06001307 .imageColorSpace = demo->color_space,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001308 .imageExtent =
1309 {
Dave Houlton5fa47912018-02-16 11:02:26 -07001310 .width = swapchainExtent.width,
1311 .height = swapchainExtent.height,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001312 },
Ian Elliottb08e0d92015-11-20 11:55:46 -07001313 .imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT,
Ian Elliottaaae5352015-07-06 14:27:58 -06001314 .preTransform = preTransform,
Tony Barbour820b55b2017-03-14 08:55:46 -06001315 .compositeAlpha = compositeAlpha,
Ian Elliottb08e0d92015-11-20 11:55:46 -07001316 .imageArrayLayers = 1,
1317 .imageSharingMode = VK_SHARING_MODE_EXCLUSIVE,
1318 .queueFamilyIndexCount = 0,
Ian Elliott8528eff2015-08-07 15:56:59 -06001319 .pQueueFamilyIndices = NULL,
Ian Elliotta0781972015-08-21 15:09:33 -06001320 .presentMode = swapchainPresentMode,
Ian Elliottcf074d32015-10-16 18:02:43 -06001321 .oldSwapchain = oldSwapchain,
Ian Elliottaaae5352015-07-06 14:27:58 -06001322 .clipped = true,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001323 };
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -06001324 uint32_t i;
Dave Houlton5fa47912018-02-16 11:02:26 -07001325 err = demo->fpCreateSwapchainKHR(demo->device, &swapchain_ci, NULL, &demo->swapchain);
Chia-I Wucbb564e2015-04-16 22:02:10 +08001326 assert(!err);
1327
Ian Elliottcf074d32015-10-16 18:02:43 -06001328 // If we just re-created an existing swapchain, we should destroy the old
1329 // swapchain at this point.
1330 // Note: destroying the swapchain also cleans up all its associated
1331 // presentable images once the platform is done with them.
Chia-I Wu1c4086a2015-10-26 20:04:44 +08001332 if (oldSwapchain != VK_NULL_HANDLE) {
Ian Elliottb08e0d92015-11-20 11:55:46 -07001333 demo->fpDestroySwapchainKHR(demo->device, oldSwapchain, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06001334 }
1335
Dave Houlton5fa47912018-02-16 11:02:26 -07001336 err = demo->fpGetSwapchainImagesKHR(demo->device, demo->swapchain, &demo->swapchainImageCount, NULL);
Ian Elliottaaae5352015-07-06 14:27:58 -06001337 assert(!err);
Chia-I Wucbb564e2015-04-16 22:02:10 +08001338
Dave Houlton5fa47912018-02-16 11:02:26 -07001339 VkImage *swapchainImages = (VkImage *)malloc(demo->swapchainImageCount * sizeof(VkImage));
Ian Elliotta0781972015-08-21 15:09:33 -06001340 assert(swapchainImages);
Dave Houlton5fa47912018-02-16 11:02:26 -07001341 err = demo->fpGetSwapchainImagesKHR(demo->device, demo->swapchain, &demo->swapchainImageCount, swapchainImages);
Ian Elliottaaae5352015-07-06 14:27:58 -06001342 assert(!err);
Ian Elliottaaae5352015-07-06 14:27:58 -06001343
Dave Houlton5fa47912018-02-16 11:02:26 -07001344 demo->swapchain_image_resources =
1345 (SwapchainImageResources *)malloc(sizeof(SwapchainImageResources) * demo->swapchainImageCount);
Tony Barboura72d9492017-01-11 13:35:09 -07001346 assert(demo->swapchain_image_resources);
1347
Ian Elliotta0781972015-08-21 15:09:33 -06001348 for (i = 0; i < demo->swapchainImageCount; i++) {
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -06001349 VkImageViewCreateInfo color_image_view = {
1350 .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001351 .pNext = NULL,
1352 .format = demo->format,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001353 .components =
1354 {
Dave Houlton5fa47912018-02-16 11:02:26 -07001355 .r = VK_COMPONENT_SWIZZLE_R,
1356 .g = VK_COMPONENT_SWIZZLE_G,
1357 .b = VK_COMPONENT_SWIZZLE_B,
1358 .a = VK_COMPONENT_SWIZZLE_A,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001359 },
Dave Houlton5fa47912018-02-16 11:02:26 -07001360 .subresourceRange =
1361 {.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT, .baseMipLevel = 0, .levelCount = 1, .baseArrayLayer = 0, .layerCount = 1},
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -06001362 .viewType = VK_IMAGE_VIEW_TYPE_2D,
1363 .flags = 0,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001364 };
1365
Tony Barboura72d9492017-01-11 13:35:09 -07001366 demo->swapchain_image_resources[i].image = swapchainImages[i];
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001367
Tony Barboura72d9492017-01-11 13:35:09 -07001368 color_image_view.image = demo->swapchain_image_resources[i].image;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001369
Dave Houlton5fa47912018-02-16 11:02:26 -07001370 err = vkCreateImageView(demo->device, &color_image_view, NULL, &demo->swapchain_image_resources[i].view);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001371 assert(!err);
1372 }
Karl Schultze4dc75c2016-02-02 15:37:51 -07001373
Ian Elliottd940ca22017-03-22 08:31:27 -06001374 if (demo->VK_GOOGLE_display_timing_enabled) {
1375 VkRefreshCycleDurationGOOGLE rc_dur;
Dave Houlton5fa47912018-02-16 11:02:26 -07001376 err = demo->fpGetRefreshCycleDurationGOOGLE(demo->device, demo->swapchain, &rc_dur);
Ian Elliottd940ca22017-03-22 08:31:27 -06001377 assert(!err);
1378 demo->refresh_duration = rc_dur.refreshDuration;
1379
1380 demo->syncd_with_actual_presents = false;
1381 // Initially target 1X the refresh duration:
1382 demo->target_IPD = demo->refresh_duration;
1383 demo->refresh_duration_multiplier = 1;
1384 demo->prev_desired_present_time = 0;
1385 demo->next_present_id = 1;
Ian Elliottd940ca22017-03-22 08:31:27 -06001386 }
1387
Mark Young04fd3d82016-01-25 14:43:50 -07001388 if (NULL != presentModes) {
1389 free(presentModes);
1390 }
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001391}
1392
Karl Schultze4dc75c2016-02-02 15:37:51 -07001393static void demo_prepare_depth(struct demo *demo) {
Tony Barbour72304ef2015-04-16 15:59:00 -06001394 const VkFormat depth_format = VK_FORMAT_D16_UNORM;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001395 const VkImageCreateInfo image = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001396 .sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001397 .pNext = NULL,
Tony Barbour72304ef2015-04-16 15:59:00 -06001398 .imageType = VK_IMAGE_TYPE_2D,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001399 .format = depth_format,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001400 .extent = {demo->width, demo->height, 1},
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001401 .mipLevels = 1,
Courtney Goeltzenleuchterdff021f2015-10-21 17:57:31 -06001402 .arrayLayers = 1,
Chia-I Wu3ede9462015-10-31 00:31:16 +08001403 .samples = VK_SAMPLE_COUNT_1_BIT,
Tony Barbour72304ef2015-04-16 15:59:00 -06001404 .tiling = VK_IMAGE_TILING_OPTIMAL,
Courtney Goeltzenleuchter4e368ee2015-09-10 14:14:11 -06001405 .usage = VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001406 .flags = 0,
1407 };
Dominik Witczak2fe1c702015-09-22 18:25:33 +02001408
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -06001409 VkImageViewCreateInfo view = {
1410 .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001411 .pNext = NULL,
Chia-I Wu1c4086a2015-10-26 20:04:44 +08001412 .image = VK_NULL_HANDLE,
Courtney Goeltzenleuchter556ee322015-07-15 17:41:38 -06001413 .format = depth_format,
Dave Houlton5fa47912018-02-16 11:02:26 -07001414 .subresourceRange =
1415 {.aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT, .baseMipLevel = 0, .levelCount = 1, .baseArrayLayer = 0, .layerCount = 1},
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001416 .flags = 0,
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -06001417 .viewType = VK_IMAGE_VIEW_TYPE_2D,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001418 };
Mike Stroyanebae8322015-04-17 12:36:38 -06001419
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001420 VkMemoryRequirements mem_reqs;
Tony Barbourfdc2d352015-04-22 09:02:32 -06001421 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter87a0ef02015-10-22 11:03:31 -06001422 bool U_ASSERT_ONLY pass;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001423
1424 demo->depth.format = depth_format;
1425
1426 /* create image */
Karl Schultze4dc75c2016-02-02 15:37:51 -07001427 err = vkCreateImage(demo->device, &image, NULL, &demo->depth.image);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001428 assert(!err);
1429
Karl Schultze4dc75c2016-02-02 15:37:51 -07001430 vkGetImageMemoryRequirements(demo->device, demo->depth.image, &mem_reqs);
Tony Barbourcb59a5d2015-10-23 10:53:30 -06001431 assert(!err);
Mark Lobodzinskieadf9982015-07-02 16:49:40 -06001432
Chia-I Wuf48700b2015-11-10 16:21:09 +08001433 demo->depth.mem_alloc.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
Dominik Witczak2fe1c702015-09-22 18:25:33 +02001434 demo->depth.mem_alloc.pNext = NULL;
1435 demo->depth.mem_alloc.allocationSize = mem_reqs.size;
1436 demo->depth.mem_alloc.memoryTypeIndex = 0;
1437
Dave Houlton5fa47912018-02-16 11:02:26 -07001438 pass = memory_type_from_properties(demo, mem_reqs.memoryTypeBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001439 &demo->depth.mem_alloc.memoryTypeIndex);
Courtney Goeltzenleuchter87a0ef02015-10-22 11:03:31 -06001440 assert(pass);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001441
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001442 /* allocate memory */
Dave Houlton5fa47912018-02-16 11:02:26 -07001443 err = vkAllocateMemory(demo->device, &demo->depth.mem_alloc, NULL, &demo->depth.mem);
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001444 assert(!err);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001445
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001446 /* bind memory */
Dave Houlton5fa47912018-02-16 11:02:26 -07001447 err = vkBindImageMemory(demo->device, demo->depth.image, demo->depth.mem, 0);
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001448 assert(!err);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001449
1450 /* create image view */
1451 view.image = demo->depth.image;
Chia-I Wu63636062015-10-26 21:10:41 +08001452 err = vkCreateImageView(demo->device, &view, NULL, &demo->depth.view);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001453 assert(!err);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001454}
1455
Karl Schultzb7940402018-05-29 13:09:22 -06001456/* Convert ppm image data from header file into RGBA texture image */
1457#include "lunarg.ppm.h"
Dave Houlton5fa47912018-02-16 11:02:26 -07001458bool loadTexture(const char *filename, uint8_t *rgba_data, VkSubresourceLayout *layout, int32_t *width, int32_t *height) {
Karl Schultzb7940402018-05-29 13:09:22 -06001459 (void)filename;
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001460 char *cPtr;
Dave Houlton5fa47912018-02-16 11:02:26 -07001461 cPtr = (char *)lunarg_ppm;
1462 if ((unsigned char *)cPtr >= (lunarg_ppm + lunarg_ppm_len) || strncmp(cPtr, "P6\n", 3)) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001463 return false;
1464 }
Dave Houlton5fa47912018-02-16 11:02:26 -07001465 while (strncmp(cPtr++, "\n", 1))
1466 ;
Alexandre BACQUART9063e2a2016-06-17 11:30:32 -06001467 sscanf(cPtr, "%u %u", width, height);
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001468 if (rgba_data == NULL) {
1469 return true;
1470 }
Dave Houlton5fa47912018-02-16 11:02:26 -07001471 while (strncmp(cPtr++, "\n", 1))
1472 ;
1473 if ((unsigned char *)cPtr >= (lunarg_ppm + lunarg_ppm_len) || strncmp(cPtr, "255\n", 4)) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001474 return false;
1475 }
Dave Houlton5fa47912018-02-16 11:02:26 -07001476 while (strncmp(cPtr++, "\n", 1))
1477 ;
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001478 for (int y = 0; y < *height; y++) {
1479 uint8_t *rowPtr = rgba_data;
1480 for (int x = 0; x < *width; x++) {
1481 memcpy(rowPtr, cPtr, 3);
1482 rowPtr[3] = 255; /* Alpha of 1 */
1483 rowPtr += 4;
1484 cPtr += 3;
1485 }
1486 rgba_data += layout->rowPitch;
1487 }
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001488 return true;
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -06001489}
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -06001490
Dave Houlton5fa47912018-02-16 11:02:26 -07001491static void demo_prepare_texture_image(struct demo *demo, const char *filename, struct texture_object *tex_obj,
1492 VkImageTiling tiling, VkImageUsageFlags usage, VkFlags required_props) {
Mike Stroyan8b89e072015-06-15 14:21:03 -06001493 const VkFormat tex_format = VK_FORMAT_R8G8B8A8_UNORM;
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -06001494 int32_t tex_width;
1495 int32_t tex_height;
Tony Barbourfdc2d352015-04-22 09:02:32 -06001496 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter87a0ef02015-10-22 11:03:31 -06001497 bool U_ASSERT_ONLY pass;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001498
Karl Schultze4dc75c2016-02-02 15:37:51 -07001499 if (!loadTexture(filename, NULL, NULL, &tex_width, &tex_height)) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05001500 ERR_EXIT("Failed to load textures", "Load Texture Failure");
David Pinedo30bd71d2015-04-23 08:16:57 -06001501 }
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001502
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -06001503 tex_obj->tex_width = tex_width;
1504 tex_obj->tex_height = tex_height;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001505
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001506 const VkImageCreateInfo image_create_info = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001507 .sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001508 .pNext = NULL,
Tony Barbour72304ef2015-04-16 15:59:00 -06001509 .imageType = VK_IMAGE_TYPE_2D,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001510 .format = tex_format,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001511 .extent = {tex_width, tex_height, 1},
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001512 .mipLevels = 1,
Courtney Goeltzenleuchterdff021f2015-10-21 17:57:31 -06001513 .arrayLayers = 1,
Chia-I Wu3ede9462015-10-31 00:31:16 +08001514 .samples = VK_SAMPLE_COUNT_1_BIT,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001515 .tiling = tiling,
Courtney Goeltzenleuchterc56c36a2015-04-21 09:31:23 -06001516 .usage = usage,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001517 .flags = 0,
Tobin Ehlisf07d9552016-02-11 17:49:23 -07001518 .initialLayout = VK_IMAGE_LAYOUT_PREINITIALIZED,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001519 };
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001520
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001521 VkMemoryRequirements mem_reqs;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001522
Dave Houlton5fa47912018-02-16 11:02:26 -07001523 err = vkCreateImage(demo->device, &image_create_info, NULL, &tex_obj->image);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001524 assert(!err);
1525
Courtney Goeltzenleuchterbd5c1742015-10-20 16:40:38 -06001526 vkGetImageMemoryRequirements(demo->device, tex_obj->image, &mem_reqs);
Piers Daniell735ee532015-02-23 16:23:13 -07001527
Chia-I Wuf48700b2015-11-10 16:21:09 +08001528 tex_obj->mem_alloc.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
Dominik Witczak2fe1c702015-09-22 18:25:33 +02001529 tex_obj->mem_alloc.pNext = NULL;
1530 tex_obj->mem_alloc.allocationSize = mem_reqs.size;
1531 tex_obj->mem_alloc.memoryTypeIndex = 0;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001532
Dave Houlton5fa47912018-02-16 11:02:26 -07001533 pass = memory_type_from_properties(demo, mem_reqs.memoryTypeBits, required_props, &tex_obj->mem_alloc.memoryTypeIndex);
Courtney Goeltzenleuchter87a0ef02015-10-22 11:03:31 -06001534 assert(pass);
Mark Lobodzinskieadf9982015-07-02 16:49:40 -06001535
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001536 /* allocate memory */
Dave Houlton5fa47912018-02-16 11:02:26 -07001537 err = vkAllocateMemory(demo->device, &tex_obj->mem_alloc, NULL, &(tex_obj->mem));
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001538 assert(!err);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001539
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001540 /* bind memory */
Karl Schultze4dc75c2016-02-02 15:37:51 -07001541 err = vkBindImageMemory(demo->device, tex_obj->image, tex_obj->mem, 0);
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001542 assert(!err);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001543
Tony Barbour8a9f62a2015-10-15 12:42:56 -06001544 if (required_props & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) {
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001545 const VkImageSubresource subres = {
Chia-I Wua0141432015-10-27 19:55:05 +08001546 .aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001547 .mipLevel = 0,
Courtney Goeltzenleuchterfc465b82015-09-10 16:38:41 -06001548 .arrayLayer = 0,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001549 };
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001550 VkSubresourceLayout layout;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001551 void *data;
1552
Dave Houlton5fa47912018-02-16 11:02:26 -07001553 vkGetImageSubresourceLayout(demo->device, tex_obj->image, &subres, &layout);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001554
Dave Houlton5fa47912018-02-16 11:02:26 -07001555 err = vkMapMemory(demo->device, tex_obj->mem, 0, tex_obj->mem_alloc.allocationSize, 0, &data);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001556 assert(!err);
1557
1558 if (!loadTexture(filename, data, &layout, &tex_width, &tex_height)) {
1559 fprintf(stderr, "Error loading texture: %s\n", filename);
1560 }
1561
Mark Lobodzinskie4c92a62015-09-07 13:59:43 -06001562 vkUnmapMemory(demo->device, tex_obj->mem);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001563 }
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -06001564
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001565 tex_obj->imageLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001566}
1567
Dave Houlton5fa47912018-02-16 11:02:26 -07001568static void demo_destroy_texture_image(struct demo *demo, struct texture_object *tex_objs) {
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001569 /* clean up staging resources */
Chia-I Wu63636062015-10-26 21:10:41 +08001570 vkFreeMemory(demo->device, tex_objs->mem, NULL);
1571 vkDestroyImage(demo->device, tex_objs->image, NULL);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001572}
1573
Karl Schultze4dc75c2016-02-02 15:37:51 -07001574static void demo_prepare_textures(struct demo *demo) {
Tony Barbour72304ef2015-04-16 15:59:00 -06001575 const VkFormat tex_format = VK_FORMAT_R8G8B8A8_UNORM;
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001576 VkFormatProperties props;
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -06001577 uint32_t i;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001578
Courtney Goeltzenleuchterbd5c1742015-10-20 16:40:38 -06001579 vkGetPhysicalDeviceFormatProperties(demo->gpu, tex_format, &props);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001580
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001581 for (i = 0; i < DEMO_TEXTURE_COUNT; i++) {
Courtney Goeltzenleuchterbd5c1742015-10-20 16:40:38 -06001582 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001583
Dave Houlton5fa47912018-02-16 11:02:26 -07001584 if ((props.linearTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) && !demo->use_staging_buffer) {
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001585 /* Device can texture using linear textures */
Dave Houlton5fa47912018-02-16 11:02:26 -07001586 demo_prepare_texture_image(demo, tex_files[i], &demo->textures[i], VK_IMAGE_TILING_LINEAR, VK_IMAGE_USAGE_SAMPLED_BIT,
1587 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT);
Tony Barbour5ff13182016-10-19 13:58:29 -06001588 // Nothing in the pipeline needs to be complete to start, and don't allow fragment
1589 // shader to run until layout transition completes
Dave Houlton5fa47912018-02-16 11:02:26 -07001590 demo_set_image_layout(demo, demo->textures[i].image, VK_IMAGE_ASPECT_COLOR_BIT, VK_IMAGE_LAYOUT_PREINITIALIZED,
1591 demo->textures[i].imageLayout, 0, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT,
Tony Barbour5ff13182016-10-19 13:58:29 -06001592 VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT);
Tony Barbour16156cb2016-10-19 14:15:49 -06001593 demo->staging_texture.image = 0;
Dave Houlton5fa47912018-02-16 11:02:26 -07001594 } else if (props.optimalTilingFeatures & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT) {
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001595 /* Must use staging buffer to copy linear texture to optimized */
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001596
Tony Barbour16156cb2016-10-19 14:15:49 -06001597 memset(&demo->staging_texture, 0, sizeof(demo->staging_texture));
Dave Houlton5fa47912018-02-16 11:02:26 -07001598 demo_prepare_texture_image(demo, tex_files[i], &demo->staging_texture, VK_IMAGE_TILING_LINEAR,
1599 VK_IMAGE_USAGE_TRANSFER_SRC_BIT,
1600 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001601
Dave Houlton5fa47912018-02-16 11:02:26 -07001602 demo_prepare_texture_image(demo, tex_files[i], &demo->textures[i], VK_IMAGE_TILING_OPTIMAL,
1603 (VK_IMAGE_USAGE_TRANSFER_DST_BIT | VK_IMAGE_USAGE_SAMPLED_BIT),
1604 VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001605
Dave Houlton5fa47912018-02-16 11:02:26 -07001606 demo_set_image_layout(demo, demo->staging_texture.image, VK_IMAGE_ASPECT_COLOR_BIT, VK_IMAGE_LAYOUT_PREINITIALIZED,
1607 VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, 0, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT,
Tony Barbour5ff13182016-10-19 13:58:29 -06001608 VK_PIPELINE_STAGE_TRANSFER_BIT);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001609
Dave Houlton5fa47912018-02-16 11:02:26 -07001610 demo_set_image_layout(demo, demo->textures[i].image, VK_IMAGE_ASPECT_COLOR_BIT, VK_IMAGE_LAYOUT_PREINITIALIZED,
1611 VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 0, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT,
Tony Barbour5ff13182016-10-19 13:58:29 -06001612 VK_PIPELINE_STAGE_TRANSFER_BIT);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001613
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001614 VkImageCopy copy_region = {
Karl Schultze4dc75c2016-02-02 15:37:51 -07001615 .srcSubresource = {VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1},
1616 .srcOffset = {0, 0, 0},
1617 .dstSubresource = {VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1},
1618 .dstOffset = {0, 0, 0},
Dave Houlton5fa47912018-02-16 11:02:26 -07001619 .extent = {demo->staging_texture.tex_width, demo->staging_texture.tex_height, 1},
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001620 };
Dave Houlton5fa47912018-02-16 11:02:26 -07001621 vkCmdCopyImage(demo->cmd, demo->staging_texture.image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, demo->textures[i].image,
1622 VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, &copy_region);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001623
Dave Houlton5fa47912018-02-16 11:02:26 -07001624 demo_set_image_layout(demo, demo->textures[i].image, VK_IMAGE_ASPECT_COLOR_BIT, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
1625 demo->textures[i].imageLayout, VK_ACCESS_TRANSFER_WRITE_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT,
Tony Barbour5ff13182016-10-19 13:58:29 -06001626 VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT);
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001627
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001628 } else {
Mike Stroyan8b89e072015-06-15 14:21:03 -06001629 /* Can't support VK_FORMAT_R8G8B8A8_UNORM !? */
1630 assert(!"No support for R8G8B8A8_UNORM as texture image format");
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001631 }
1632
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001633 const VkSamplerCreateInfo sampler = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001634 .sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001635 .pNext = NULL,
Chia-I Wu6ef8c3b2015-10-26 16:49:32 +08001636 .magFilter = VK_FILTER_NEAREST,
1637 .minFilter = VK_FILTER_NEAREST,
Jon Ashburn0bec67e2016-01-11 13:12:43 -07001638 .mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST,
Chia-I Wu6555f3f2015-10-26 17:32:47 +08001639 .addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
1640 .addressModeV = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
1641 .addressModeW = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001642 .mipLodBias = 0.0f,
Jon Ashburn55e3fb02015-12-14 14:59:20 -07001643 .anisotropyEnable = VK_FALSE,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001644 .maxAnisotropy = 1,
Tony Barbour72304ef2015-04-16 15:59:00 -06001645 .compareOp = VK_COMPARE_OP_NEVER,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001646 .minLod = 0.0f,
1647 .maxLod = 0.0f,
Tony Barbourcb530c72015-06-25 16:56:44 -06001648 .borderColor = VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE,
Mark Lobodzinski644dc492015-09-01 15:42:56 -06001649 .unnormalizedCoordinates = VK_FALSE,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001650 };
Courtney Goeltzenleuchter68369392014-10-29 15:59:49 -06001651
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001652 VkImageViewCreateInfo view = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001653 .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001654 .pNext = NULL,
Chia-I Wu1c4086a2015-10-26 20:04:44 +08001655 .image = VK_NULL_HANDLE,
Tony Barbour72304ef2015-04-16 15:59:00 -06001656 .viewType = VK_IMAGE_VIEW_TYPE_2D,
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07001657 .format = tex_format,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001658 .components =
1659 {
Dave Houlton5fa47912018-02-16 11:02:26 -07001660 VK_COMPONENT_SWIZZLE_R,
1661 VK_COMPONENT_SWIZZLE_G,
1662 VK_COMPONENT_SWIZZLE_B,
1663 VK_COMPONENT_SWIZZLE_A,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001664 },
1665 .subresourceRange = {VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1},
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -06001666 .flags = 0,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001667 };
Jon Ashburnb2a66652015-01-16 09:37:43 -07001668
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001669 /* create sampler */
Dave Houlton5fa47912018-02-16 11:02:26 -07001670 err = vkCreateSampler(demo->device, &sampler, NULL, &demo->textures[i].sampler);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001671 assert(!err);
1672
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001673 /* create image view */
1674 view.image = demo->textures[i].image;
Dave Houlton5fa47912018-02-16 11:02:26 -07001675 err = vkCreateImageView(demo->device, &view, NULL, &demo->textures[i].view);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001676 assert(!err);
1677 }
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001678}
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001679
Tony Barboura72d9492017-01-11 13:35:09 -07001680void demo_prepare_cube_data_buffers(struct demo *demo) {
Courtney Goeltzenleuchter28c4d5f2015-04-14 18:48:46 -06001681 VkBufferCreateInfo buf_info;
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001682 VkMemoryRequirements mem_reqs;
Tony Barboura72d9492017-01-11 13:35:09 -07001683 VkMemoryAllocateInfo mem_alloc;
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -06001684 uint8_t *pData;
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001685 mat4x4 MVP, VP;
Tony Barbourfdc2d352015-04-22 09:02:32 -06001686 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter87a0ef02015-10-22 11:03:31 -06001687 bool U_ASSERT_ONLY pass;
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001688 struct vktexcube_vs_uniform data;
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001689
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001690 mat4x4_mul(VP, demo->projection_matrix, demo->view_matrix);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001691 mat4x4_mul(MVP, VP, demo->model_matrix);
1692 memcpy(data.mvp, MVP, sizeof(MVP));
Karl Schultze4dc75c2016-02-02 15:37:51 -07001693 // dumpMatrix("MVP", MVP);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001694
Karl Schultza2615462017-01-20 13:19:20 -07001695 for (unsigned int i = 0; i < 12 * 3; i++) {
Karl Schultze4dc75c2016-02-02 15:37:51 -07001696 data.position[i][0] = g_vertex_buffer_data[i * 3];
1697 data.position[i][1] = g_vertex_buffer_data[i * 3 + 1];
1698 data.position[i][2] = g_vertex_buffer_data[i * 3 + 2];
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001699 data.position[i][3] = 1.0f;
Karl Schultze4dc75c2016-02-02 15:37:51 -07001700 data.attr[i][0] = g_uv_buffer_data[2 * i];
1701 data.attr[i][1] = g_uv_buffer_data[2 * i + 1];
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001702 data.attr[i][2] = 0;
1703 data.attr[i][3] = 0;
1704 }
1705
Chia-I Wu8ea21c72015-01-01 07:55:04 +08001706 memset(&buf_info, 0, sizeof(buf_info));
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001707 buf_info.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO;
Courtney Goeltzenleuchter42a078d2015-04-15 15:29:59 -06001708 buf_info.usage = VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT;
Cody Northrop91807302015-07-16 10:29:32 -06001709 buf_info.size = sizeof(data);
Chia-I Wu8ea21c72015-01-01 07:55:04 +08001710
Tony Barboura72d9492017-01-11 13:35:09 -07001711 for (unsigned int i = 0; i < demo->swapchainImageCount; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07001712 err = vkCreateBuffer(demo->device, &buf_info, NULL, &demo->swapchain_image_resources[i].uniform_buffer);
Tony Barboura72d9492017-01-11 13:35:09 -07001713 assert(!err);
Chia-I Wu8ea21c72015-01-01 07:55:04 +08001714
Dave Houlton5fa47912018-02-16 11:02:26 -07001715 vkGetBufferMemoryRequirements(demo->device, demo->swapchain_image_resources[i].uniform_buffer, &mem_reqs);
Dominik Witczak2fe1c702015-09-22 18:25:33 +02001716
Tony Barboura72d9492017-01-11 13:35:09 -07001717 mem_alloc.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
1718 mem_alloc.pNext = NULL;
1719 mem_alloc.allocationSize = mem_reqs.size;
1720 mem_alloc.memoryTypeIndex = 0;
1721
Dave Houlton5fa47912018-02-16 11:02:26 -07001722 pass = memory_type_from_properties(demo, mem_reqs.memoryTypeBits,
1723 VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
1724 &mem_alloc.memoryTypeIndex);
Tony Barboura72d9492017-01-11 13:35:09 -07001725 assert(pass);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001726
Dave Houlton5fa47912018-02-16 11:02:26 -07001727 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->swapchain_image_resources[i].uniform_memory);
Tony Barboura72d9492017-01-11 13:35:09 -07001728 assert(!err);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001729
Dave Houlton5fa47912018-02-16 11:02:26 -07001730 err = vkMapMemory(demo->device, demo->swapchain_image_resources[i].uniform_memory, 0, VK_WHOLE_SIZE, 0, (void **)&pData);
Tony Barboura72d9492017-01-11 13:35:09 -07001731 assert(!err);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001732
Tony Barboura72d9492017-01-11 13:35:09 -07001733 memcpy(pData, &data, sizeof data);
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001734
Tony Barboura72d9492017-01-11 13:35:09 -07001735 vkUnmapMemory(demo->device, demo->swapchain_image_resources[i].uniform_memory);
Mark Lobodzinski2dcdfd72015-05-29 09:32:35 -05001736
Tony Barboura72d9492017-01-11 13:35:09 -07001737 err = vkBindBufferMemory(demo->device, demo->swapchain_image_resources[i].uniform_buffer,
Dave Houlton5fa47912018-02-16 11:02:26 -07001738 demo->swapchain_image_resources[i].uniform_memory, 0);
Tony Barboura72d9492017-01-11 13:35:09 -07001739 assert(!err);
1740 }
Courtney Goeltzenleuchter4984d152014-10-28 14:50:30 -06001741}
1742
Karl Schultze4dc75c2016-02-02 15:37:51 -07001743static void demo_prepare_descriptor_layout(struct demo *demo) {
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001744 const VkDescriptorSetLayoutBinding layout_bindings[2] = {
Dave Houlton5fa47912018-02-16 11:02:26 -07001745 [0] =
1746 {
1747 .binding = 0,
1748 .descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
1749 .descriptorCount = 1,
1750 .stageFlags = VK_SHADER_STAGE_VERTEX_BIT,
1751 .pImmutableSamplers = NULL,
1752 },
1753 [1] =
1754 {
1755 .binding = 1,
1756 .descriptorType = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
1757 .descriptorCount = DEMO_TEXTURE_COUNT,
1758 .stageFlags = VK_SHADER_STAGE_FRAGMENT_BIT,
1759 .pImmutableSamplers = NULL,
1760 },
Chia-I Wua2aa8632015-03-26 15:04:41 +08001761 };
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001762 const VkDescriptorSetLayoutCreateInfo descriptor_layout = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001763 .sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
Chia-I Wu6a3c8972015-01-04 16:27:24 +08001764 .pNext = NULL,
Chia-I Wu3dfc1342015-10-26 20:48:51 +08001765 .bindingCount = 2,
Jon Ashburn238f3432015-12-30 18:01:16 -07001766 .pBindings = layout_bindings,
Chia-I Wu6a3c8972015-01-04 16:27:24 +08001767 };
Tony Barbourfdc2d352015-04-22 09:02:32 -06001768 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001769
Dave Houlton5fa47912018-02-16 11:02:26 -07001770 err = vkCreateDescriptorSetLayout(demo->device, &descriptor_layout, NULL, &demo->desc_layout);
Chia-I Wub58c24a2015-03-26 15:27:55 +08001771 assert(!err);
1772
Mark Lobodzinski1cfc7722015-04-17 14:11:39 -05001773 const VkPipelineLayoutCreateInfo pPipelineLayoutCreateInfo = {
Karl Schultze4dc75c2016-02-02 15:37:51 -07001774 .sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO,
1775 .pNext = NULL,
Chia-I Wu3dfc1342015-10-26 20:48:51 +08001776 .setLayoutCount = 1,
Karl Schultze4dc75c2016-02-02 15:37:51 -07001777 .pSetLayouts = &demo->desc_layout,
Mark Lobodzinski1cfc7722015-04-17 14:11:39 -05001778 };
1779
Dave Houlton5fa47912018-02-16 11:02:26 -07001780 err = vkCreatePipelineLayout(demo->device, &pPipelineLayoutCreateInfo, NULL, &demo->pipeline_layout);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001781 assert(!err);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001782}
1783
Karl Schultze4dc75c2016-02-02 15:37:51 -07001784static void demo_prepare_render_pass(struct demo *demo) {
Tony Barbourdb30e4b2016-10-11 11:41:05 -06001785 // The initial layout for the color and depth attachments will be LAYOUT_UNDEFINED
1786 // because at the start of the renderpass, we don't care about their contents.
1787 // At the start of the subpass, the color attachment's layout will be transitioned
1788 // to LAYOUT_COLOR_ATTACHMENT_OPTIMAL and the depth stencil attachment's layout
1789 // will be transitioned to LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL. At the end of
1790 // the renderpass, the color attachment's layout will be transitioned to
1791 // LAYOUT_PRESENT_SRC_KHR to be ready to present. This is all done as part of
1792 // the renderpass, no barriers are necessary.
Chia-I Wua74c5b22015-07-07 11:50:03 +08001793 const VkAttachmentDescription attachments[2] = {
Dave Houlton5fa47912018-02-16 11:02:26 -07001794 [0] =
1795 {
1796 .format = demo->format,
1797 .flags = 0,
1798 .samples = VK_SAMPLE_COUNT_1_BIT,
1799 .loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR,
1800 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
1801 .stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
1802 .stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
1803 .initialLayout = VK_IMAGE_LAYOUT_UNDEFINED,
1804 .finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
1805 },
1806 [1] =
1807 {
1808 .format = demo->depth.format,
1809 .flags = 0,
1810 .samples = VK_SAMPLE_COUNT_1_BIT,
1811 .loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR,
1812 .storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
1813 .stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
1814 .stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
1815 .initialLayout = VK_IMAGE_LAYOUT_UNDEFINED,
1816 .finalLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
1817 },
Chia-I Wuf973e322015-07-08 13:34:24 +08001818 };
Chia-I Wua74c5b22015-07-07 11:50:03 +08001819 const VkAttachmentReference color_reference = {
Dave Houlton5fa47912018-02-16 11:02:26 -07001820 .attachment = 0,
1821 .layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL,
Chia-I Wua74c5b22015-07-07 11:50:03 +08001822 };
Chia-I Wu6555f3f2015-10-26 17:32:47 +08001823 const VkAttachmentReference depth_reference = {
1824 .attachment = 1,
1825 .layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
1826 };
Chia-I Wua74c5b22015-07-07 11:50:03 +08001827 const VkSubpassDescription subpass = {
Chia-I Wua74c5b22015-07-07 11:50:03 +08001828 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
1829 .flags = 0,
Chia-I Wu3dfc1342015-10-26 20:48:51 +08001830 .inputAttachmentCount = 0,
Cody Northrop945bb832015-08-04 11:16:41 -06001831 .pInputAttachments = NULL,
Chia-I Wu3dfc1342015-10-26 20:48:51 +08001832 .colorAttachmentCount = 1,
Cody Northrop945bb832015-08-04 11:16:41 -06001833 .pColorAttachments = &color_reference,
1834 .pResolveAttachments = NULL,
Chia-I Wu6555f3f2015-10-26 17:32:47 +08001835 .pDepthStencilAttachment = &depth_reference,
Chia-I Wu3dfc1342015-10-26 20:48:51 +08001836 .preserveAttachmentCount = 0,
Cody Northrop945bb832015-08-04 11:16:41 -06001837 .pPreserveAttachments = NULL,
Chia-I Wua74c5b22015-07-07 11:50:03 +08001838 };
Chia-I Wuf973e322015-07-08 13:34:24 +08001839 const VkRenderPassCreateInfo rp_info = {
1840 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
1841 .pNext = NULL,
Tony Barboura860ce12016-11-21 12:56:25 -07001842 .flags = 0,
Chia-I Wua74c5b22015-07-07 11:50:03 +08001843 .attachmentCount = 2,
1844 .pAttachments = attachments,
1845 .subpassCount = 1,
1846 .pSubpasses = &subpass,
1847 .dependencyCount = 0,
1848 .pDependencies = NULL,
Chia-I Wuf973e322015-07-08 13:34:24 +08001849 };
Chia-I Wua74c5b22015-07-07 11:50:03 +08001850 VkResult U_ASSERT_ONLY err;
Chia-I Wuf973e322015-07-08 13:34:24 +08001851
Chia-I Wu63636062015-10-26 21:10:41 +08001852 err = vkCreateRenderPass(demo->device, &rp_info, NULL, &demo->render_pass);
Chia-I Wuf973e322015-07-08 13:34:24 +08001853 assert(!err);
1854}
1855
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001856static VkShaderModule demo_prepare_shader_module(struct demo *demo, const uint32_t *code, size_t size) {
Chia-I Wu46176f12015-10-31 00:31:16 +08001857 VkShaderModule module;
Courtney Goeltzenleuchtera80a1a92015-06-24 18:24:19 -06001858 VkShaderModuleCreateInfo moduleCreateInfo;
Courtney Goeltzenleuchterd3cdaaf2015-12-17 09:53:29 -07001859 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001860
Courtney Goeltzenleuchtera80a1a92015-06-24 18:24:19 -06001861 moduleCreateInfo.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO;
1862 moduleCreateInfo.pNext = NULL;
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001863 moduleCreateInfo.flags = 0;
Courtney Goeltzenleuchtera95e3052015-10-30 15:19:27 -06001864 moduleCreateInfo.codeSize = size;
1865 moduleCreateInfo.pCode = code;
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001866
Courtney Goeltzenleuchtera95e3052015-10-30 15:19:27 -06001867 err = vkCreateShaderModule(demo->device, &moduleCreateInfo, NULL, &module);
1868 assert(!err);
Chia-I Wu46176f12015-10-31 00:31:16 +08001869
1870 return module;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001871}
1872
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001873static void demo_prepare_vs(struct demo *demo) {
1874 const uint32_t vs_code[] = {
1875#include "cube.vert.inc"
1876 };
1877 demo->vert_shader_module = demo_prepare_shader_module(demo, vs_code, sizeof(vs_code));
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001878}
1879
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001880static void demo_prepare_fs(struct demo *demo) {
1881 const uint32_t fs_code[] = {
1882#include "cube.frag.inc"
1883 };
1884 demo->frag_shader_module = demo_prepare_shader_module(demo, fs_code, sizeof(fs_code));
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001885}
1886
Karl Schultze4dc75c2016-02-02 15:37:51 -07001887static void demo_prepare_pipeline(struct demo *demo) {
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06001888 VkGraphicsPipelineCreateInfo pipeline;
Jon Ashburnc4ab7af2015-07-09 15:02:25 -06001889 VkPipelineCacheCreateInfo pipelineCache;
Karl Schultze4dc75c2016-02-02 15:37:51 -07001890 VkPipelineVertexInputStateCreateInfo vi;
Tony Barbour194bf282015-07-10 15:29:03 -06001891 VkPipelineInputAssemblyStateCreateInfo ia;
Karl Schultze4dc75c2016-02-02 15:37:51 -07001892 VkPipelineRasterizationStateCreateInfo rs;
1893 VkPipelineColorBlendStateCreateInfo cb;
1894 VkPipelineDepthStencilStateCreateInfo ds;
1895 VkPipelineViewportStateCreateInfo vp;
1896 VkPipelineMultisampleStateCreateInfo ms;
1897 VkDynamicState dynamicStateEnables[VK_DYNAMIC_STATE_RANGE_SIZE];
1898 VkPipelineDynamicStateCreateInfo dynamicState;
Tony Barbourfdc2d352015-04-22 09:02:32 -06001899 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001900
Piers Daniellba839d12015-09-29 13:01:09 -06001901 memset(dynamicStateEnables, 0, sizeof dynamicStateEnables);
1902 memset(&dynamicState, 0, sizeof dynamicState);
1903 dynamicState.sType = VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO;
1904 dynamicState.pDynamicStates = dynamicStateEnables;
1905
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001906 memset(&pipeline, 0, sizeof(pipeline));
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001907 pipeline.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
Mark Lobodzinski1cfc7722015-04-17 14:11:39 -05001908 pipeline.layout = demo->pipeline_layout;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001909
Jason Ekstrand515b7ae2015-10-15 17:15:25 -07001910 memset(&vi, 0, sizeof(vi));
1911 vi.sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO;
1912
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001913 memset(&ia, 0, sizeof(ia));
Tony Barbour194bf282015-07-10 15:29:03 -06001914 ia.sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO;
Tony Barbour72304ef2015-04-16 15:59:00 -06001915 ia.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001916
1917 memset(&rs, 0, sizeof(rs));
Chia-I Wuf051d262015-10-27 19:25:11 +08001918 rs.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO;
1919 rs.polygonMode = VK_POLYGON_MODE_FILL;
Chia-I Wu6555f3f2015-10-26 17:32:47 +08001920 rs.cullMode = VK_CULL_MODE_BACK_BIT;
Chia-I Wua8fe78a2015-10-27 18:04:07 +08001921 rs.frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE;
Courtney Goeltzenleuchter0db2c912015-10-15 12:57:38 -06001922 rs.depthClampEnable = VK_FALSE;
Cody Northrop709c1742015-08-17 11:10:49 -06001923 rs.rasterizerDiscardEnable = VK_FALSE;
1924 rs.depthBiasEnable = VK_FALSE;
Mark Young8749e2e2016-03-31 14:56:43 -06001925 rs.lineWidth = 1.0f;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001926
1927 memset(&cb, 0, sizeof(cb));
Tony Barbour194bf282015-07-10 15:29:03 -06001928 cb.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO;
1929 VkPipelineColorBlendAttachmentState att_state[1];
Tony Barbour29645d02015-01-16 14:27:35 -07001930 memset(att_state, 0, sizeof(att_state));
Chia-I Wuf051d262015-10-27 19:25:11 +08001931 att_state[0].colorWriteMask = 0xf;
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001932 att_state[0].blendEnable = VK_FALSE;
Tony Barbour29645d02015-01-16 14:27:35 -07001933 cb.attachmentCount = 1;
1934 cb.pAttachments = att_state;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001935
Tony Barbour29645d02015-01-16 14:27:35 -07001936 memset(&vp, 0, sizeof(vp));
Tony Barbour194bf282015-07-10 15:29:03 -06001937 vp.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO;
Tony Barbour72304ef2015-04-16 15:59:00 -06001938 vp.viewportCount = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07001939 dynamicStateEnables[dynamicState.dynamicStateCount++] = VK_DYNAMIC_STATE_VIEWPORT;
Piers Daniellba839d12015-09-29 13:01:09 -06001940 vp.scissorCount = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07001941 dynamicStateEnables[dynamicState.dynamicStateCount++] = VK_DYNAMIC_STATE_SCISSOR;
Tony Barbour29645d02015-01-16 14:27:35 -07001942
1943 memset(&ds, 0, sizeof(ds));
Tony Barbour194bf282015-07-10 15:29:03 -06001944 ds.sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO;
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001945 ds.depthTestEnable = VK_TRUE;
1946 ds.depthWriteEnable = VK_TRUE;
Chia-I Wua8fe78a2015-10-27 18:04:07 +08001947 ds.depthCompareOp = VK_COMPARE_OP_LESS_OR_EQUAL;
Cody Northrop5e4125d2015-08-26 10:01:32 -06001948 ds.depthBoundsTestEnable = VK_FALSE;
Chia-I Wuf051d262015-10-27 19:25:11 +08001949 ds.back.failOp = VK_STENCIL_OP_KEEP;
1950 ds.back.passOp = VK_STENCIL_OP_KEEP;
1951 ds.back.compareOp = VK_COMPARE_OP_ALWAYS;
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06001952 ds.stencilTestEnable = VK_FALSE;
Tony Barbour29645d02015-01-16 14:27:35 -07001953 ds.front = ds.back;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001954
Tony Barbour29645d02015-01-16 14:27:35 -07001955 memset(&ms, 0, sizeof(ms));
Tony Barbour194bf282015-07-10 15:29:03 -06001956 ms.sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO;
Cody Northrop011546b2015-08-04 14:34:54 -06001957 ms.pSampleMask = NULL;
Chia-I Wu3ede9462015-10-31 00:31:16 +08001958 ms.rasterizationSamples = VK_SAMPLE_COUNT_1_BIT;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001959
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001960 demo_prepare_vs(demo);
1961 demo_prepare_fs(demo);
1962
Mark Lobodzinski521d7762015-06-23 15:11:57 -06001963 // Two stages: vs and fs
Mark Lobodzinski521d7762015-06-23 15:11:57 -06001964 VkPipelineShaderStageCreateInfo shaderStages[2];
1965 memset(&shaderStages, 0, 2 * sizeof(VkPipelineShaderStageCreateInfo));
1966
Karl Schultze4dc75c2016-02-02 15:37:51 -07001967 shaderStages[0].sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
1968 shaderStages[0].stage = VK_SHADER_STAGE_VERTEX_BIT;
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001969 shaderStages[0].module = demo->vert_shader_module;
Karl Schultze4dc75c2016-02-02 15:37:51 -07001970 shaderStages[0].pName = "main";
Mark Lobodzinski521d7762015-06-23 15:11:57 -06001971
Karl Schultze4dc75c2016-02-02 15:37:51 -07001972 shaderStages[1].sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
1973 shaderStages[1].stage = VK_SHADER_STAGE_FRAGMENT_BIT;
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001974 shaderStages[1].module = demo->frag_shader_module;
Karl Schultze4dc75c2016-02-02 15:37:51 -07001975 shaderStages[1].pName = "main";
Mark Lobodzinski521d7762015-06-23 15:11:57 -06001976
Jon Ashburnc4ab7af2015-07-09 15:02:25 -06001977 memset(&pipelineCache, 0, sizeof(pipelineCache));
1978 pipelineCache.sType = VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001979
Dave Houlton5fa47912018-02-16 11:02:26 -07001980 err = vkCreatePipelineCache(demo->device, &pipelineCache, NULL, &demo->pipelineCache);
Jon Ashburnc4ab7af2015-07-09 15:02:25 -06001981 assert(!err);
Tony Barbour194bf282015-07-10 15:29:03 -06001982
Karl Schultze4dc75c2016-02-02 15:37:51 -07001983 pipeline.pVertexInputState = &vi;
Tony Barbour194bf282015-07-10 15:29:03 -06001984 pipeline.pInputAssemblyState = &ia;
Karl Schultze4dc75c2016-02-02 15:37:51 -07001985 pipeline.pRasterizationState = &rs;
1986 pipeline.pColorBlendState = &cb;
1987 pipeline.pMultisampleState = &ms;
1988 pipeline.pViewportState = &vp;
1989 pipeline.pDepthStencilState = &ds;
Petr Kraus9a4eb6a2017-11-30 14:49:20 +01001990 pipeline.stageCount = ARRAY_SIZE(shaderStages);
Karl Schultze4dc75c2016-02-02 15:37:51 -07001991 pipeline.pStages = shaderStages;
1992 pipeline.renderPass = demo->render_pass;
1993 pipeline.pDynamicState = &dynamicState;
Tony Barbour194bf282015-07-10 15:29:03 -06001994
Courtney Goeltzenleuchterd311fd02015-08-13 16:55:04 -06001995 pipeline.renderPass = demo->render_pass;
1996
Dave Houlton5fa47912018-02-16 11:02:26 -07001997 err = vkCreateGraphicsPipelines(demo->device, demo->pipelineCache, 1, &pipeline, NULL, &demo->pipeline);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06001998 assert(!err);
1999
Chia-I Wu63636062015-10-26 21:10:41 +08002000 vkDestroyShaderModule(demo->device, demo->frag_shader_module, NULL);
2001 vkDestroyShaderModule(demo->device, demo->vert_shader_module, NULL);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002002}
2003
Karl Schultze4dc75c2016-02-02 15:37:51 -07002004static void demo_prepare_descriptor_pool(struct demo *demo) {
Chia-I Wuf051d262015-10-27 19:25:11 +08002005 const VkDescriptorPoolSize type_counts[2] = {
Dave Houlton5fa47912018-02-16 11:02:26 -07002006 [0] =
2007 {
2008 .type = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
2009 .descriptorCount = demo->swapchainImageCount,
2010 },
2011 [1] =
2012 {
2013 .type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
2014 .descriptorCount = demo->swapchainImageCount * DEMO_TEXTURE_COUNT,
2015 },
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002016 };
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06002017 const VkDescriptorPoolCreateInfo descriptor_pool = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06002018 .sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO,
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002019 .pNext = NULL,
Tony Barboura72d9492017-01-11 13:35:09 -07002020 .maxSets = demo->swapchainImageCount,
Chia-I Wuf051d262015-10-27 19:25:11 +08002021 .poolSizeCount = 2,
2022 .pPoolSizes = type_counts,
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002023 };
Tony Barbourfdc2d352015-04-22 09:02:32 -06002024 VkResult U_ASSERT_ONLY err;
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002025
Dave Houlton5fa47912018-02-16 11:02:26 -07002026 err = vkCreateDescriptorPool(demo->device, &descriptor_pool, NULL, &demo->desc_pool);
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002027 assert(!err);
2028}
2029
Karl Schultze4dc75c2016-02-02 15:37:51 -07002030static void demo_prepare_descriptor_set(struct demo *demo) {
Courtney Goeltzenleuchterc3ad65e2015-10-23 13:38:14 -06002031 VkDescriptorImageInfo tex_descs[DEMO_TEXTURE_COUNT];
Chia-I Wuae721ba2015-05-25 16:27:55 +08002032 VkWriteDescriptorSet writes[2];
Tony Barbourfdc2d352015-04-22 09:02:32 -06002033 VkResult U_ASSERT_ONLY err;
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002034
Dave Houlton5fa47912018-02-16 11:02:26 -07002035 VkDescriptorSetAllocateInfo alloc_info = {.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO,
2036 .pNext = NULL,
2037 .descriptorPool = demo->desc_pool,
2038 .descriptorSetCount = 1,
2039 .pSetLayouts = &demo->desc_layout};
Tony Barboura72d9492017-01-11 13:35:09 -07002040
2041 VkDescriptorBufferInfo buffer_info;
2042 buffer_info.offset = 0;
2043 buffer_info.range = sizeof(struct vktexcube_vs_uniform);
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002044
Chia-I Wuae721ba2015-05-25 16:27:55 +08002045 memset(&tex_descs, 0, sizeof(tex_descs));
Karl Schultza2615462017-01-20 13:19:20 -07002046 for (unsigned int i = 0; i < DEMO_TEXTURE_COUNT; i++) {
Courtney Goeltzenleuchterc3ad65e2015-10-23 13:38:14 -06002047 tex_descs[i].sampler = demo->textures[i].sampler;
2048 tex_descs[i].imageView = demo->textures[i].view;
2049 tex_descs[i].imageLayout = VK_IMAGE_LAYOUT_GENERAL;
Chia-I Wuae721ba2015-05-25 16:27:55 +08002050 }
2051
2052 memset(&writes, 0, sizeof(writes));
2053
2054 writes[0].sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET;
Chia-I Wu3dfc1342015-10-26 20:48:51 +08002055 writes[0].descriptorCount = 1;
Chia-I Wuae721ba2015-05-25 16:27:55 +08002056 writes[0].descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER;
Tony Barboura72d9492017-01-11 13:35:09 -07002057 writes[0].pBufferInfo = &buffer_info;
Chia-I Wuae721ba2015-05-25 16:27:55 +08002058
2059 writes[1].sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET;
Chia-I Wua8fe78a2015-10-27 18:04:07 +08002060 writes[1].dstBinding = 1;
Chia-I Wu3dfc1342015-10-26 20:48:51 +08002061 writes[1].descriptorCount = DEMO_TEXTURE_COUNT;
Chia-I Wuae721ba2015-05-25 16:27:55 +08002062 writes[1].descriptorType = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
Courtney Goeltzenleuchterc3ad65e2015-10-23 13:38:14 -06002063 writes[1].pImageInfo = tex_descs;
Chia-I Wuae721ba2015-05-25 16:27:55 +08002064
Tony Barboura72d9492017-01-11 13:35:09 -07002065 for (unsigned int i = 0; i < demo->swapchainImageCount; i++) {
2066 err = vkAllocateDescriptorSets(demo->device, &alloc_info, &demo->swapchain_image_resources[i].descriptor_set);
2067 assert(!err);
2068 buffer_info.buffer = demo->swapchain_image_resources[i].uniform_buffer;
2069 writes[0].dstSet = demo->swapchain_image_resources[i].descriptor_set;
2070 writes[1].dstSet = demo->swapchain_image_resources[i].descriptor_set;
2071 vkUpdateDescriptorSets(demo->device, 2, writes, 0, NULL);
2072 }
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002073}
2074
Karl Schultze4dc75c2016-02-02 15:37:51 -07002075static void demo_prepare_framebuffers(struct demo *demo) {
Courtney Goeltzenleuchter41866db2015-09-01 17:30:39 -06002076 VkImageView attachments[2];
Cody Northrop2e11cad2015-08-04 10:47:08 -06002077 attachments[1] = demo->depth.view;
2078
Chia-I Wuf973e322015-07-08 13:34:24 +08002079 const VkFramebufferCreateInfo fb_info = {
Karl Schultze4dc75c2016-02-02 15:37:51 -07002080 .sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO,
2081 .pNext = NULL,
2082 .renderPass = demo->render_pass,
2083 .attachmentCount = 2,
2084 .pAttachments = attachments,
2085 .width = demo->width,
2086 .height = demo->height,
2087 .layers = 1,
Chia-I Wuf973e322015-07-08 13:34:24 +08002088 };
2089 VkResult U_ASSERT_ONLY err;
2090 uint32_t i;
2091
Tony Barbourd8e504f2015-10-08 14:26:24 -06002092 for (i = 0; i < demo->swapchainImageCount; i++) {
Tony Barboura72d9492017-01-11 13:35:09 -07002093 attachments[0] = demo->swapchain_image_resources[i].view;
Dave Houlton5fa47912018-02-16 11:02:26 -07002094 err = vkCreateFramebuffer(demo->device, &fb_info, NULL, &demo->swapchain_image_resources[i].framebuffer);
Chia-I Wuf973e322015-07-08 13:34:24 +08002095 assert(!err);
2096 }
2097}
2098
Karl Schultze4dc75c2016-02-02 15:37:51 -07002099static void demo_prepare(struct demo *demo) {
Cody Northrop91e221b2015-07-09 18:08:32 -06002100 VkResult U_ASSERT_ONLY err;
Jeremy Kniager602e4182018-01-19 10:52:34 -07002101 if (demo->cmd_pool == VK_NULL_HANDLE) {
2102 const VkCommandPoolCreateInfo cmd_pool_info = {
2103 .sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO,
2104 .pNext = NULL,
2105 .queueFamilyIndex = demo->graphics_queue_family_index,
2106 .flags = 0,
2107 };
2108 err = vkCreateCommandPool(demo->device, &cmd_pool_info, NULL, &demo->cmd_pool);
2109 assert(!err);
2110 }
Cody Northrop91e221b2015-07-09 18:08:32 -06002111
Chia-I Wua8fe78a2015-10-27 18:04:07 +08002112 const VkCommandBufferAllocateInfo cmd = {
Chia-I Wuf48700b2015-11-10 16:21:09 +08002113 .sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002114 .pNext = NULL,
Chia-I Wua8fe78a2015-10-27 18:04:07 +08002115 .commandPool = demo->cmd_pool,
2116 .level = VK_COMMAND_BUFFER_LEVEL_PRIMARY,
Jon Ashburn0bec67e2016-01-11 13:12:43 -07002117 .commandBufferCount = 1,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002118 };
Tony Barbour6db4fcb2016-10-19 13:41:16 -06002119 err = vkAllocateCommandBuffers(demo->device, &cmd, &demo->cmd);
2120 assert(!err);
2121 VkCommandBufferBeginInfo cmd_buf_info = {
2122 .sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO,
2123 .pNext = NULL,
2124 .flags = 0,
2125 .pInheritanceInfo = NULL,
2126 };
2127 err = vkBeginCommandBuffer(demo->cmd, &cmd_buf_info);
2128 assert(!err);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002129
2130 demo_prepare_buffers(demo);
Jeremy Kniager602e4182018-01-19 10:52:34 -07002131
2132 if (demo->is_minimized) {
2133 demo->prepared = false;
2134 return;
2135 }
2136
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002137 demo_prepare_depth(demo);
2138 demo_prepare_textures(demo);
Tony Barboura72d9492017-01-11 13:35:09 -07002139 demo_prepare_cube_data_buffers(demo);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002140
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002141 demo_prepare_descriptor_layout(demo);
Chia-I Wuf973e322015-07-08 13:34:24 +08002142 demo_prepare_render_pass(demo);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002143 demo_prepare_pipeline(demo);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002144
Ian Elliotta0781972015-08-21 15:09:33 -06002145 for (uint32_t i = 0; i < demo->swapchainImageCount; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002146 err = vkAllocateCommandBuffers(demo->device, &cmd, &demo->swapchain_image_resources[i].cmd);
Courtney Goeltzenleuchterefc58ae2015-02-17 09:48:44 -07002147 assert(!err);
2148 }
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002149
Tony Barbour22e06272016-09-07 16:07:56 -06002150 if (demo->separate_present_queue) {
Karl Schultza2615462017-01-20 13:19:20 -07002151 const VkCommandPoolCreateInfo present_cmd_pool_info = {
Tony Barbour22e06272016-09-07 16:07:56 -06002152 .sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO,
2153 .pNext = NULL,
2154 .queueFamilyIndex = demo->present_queue_family_index,
2155 .flags = 0,
2156 };
Dave Houlton5fa47912018-02-16 11:02:26 -07002157 err = vkCreateCommandPool(demo->device, &present_cmd_pool_info, NULL, &demo->present_cmd_pool);
Tony Barbour22e06272016-09-07 16:07:56 -06002158 assert(!err);
Karl Schultza2615462017-01-20 13:19:20 -07002159 const VkCommandBufferAllocateInfo present_cmd_info = {
Tony Barbour22e06272016-09-07 16:07:56 -06002160 .sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO,
2161 .pNext = NULL,
2162 .commandPool = demo->present_cmd_pool,
2163 .level = VK_COMMAND_BUFFER_LEVEL_PRIMARY,
2164 .commandBufferCount = 1,
2165 };
2166 for (uint32_t i = 0; i < demo->swapchainImageCount; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002167 err = vkAllocateCommandBuffers(demo->device, &present_cmd_info,
2168 &demo->swapchain_image_resources[i].graphics_to_present_cmd);
Tony Barbour22e06272016-09-07 16:07:56 -06002169 assert(!err);
2170 demo_build_image_ownership_cmd(demo, i);
2171 }
2172 }
2173
Chia-I Wu63ea9262015-03-26 13:14:16 +08002174 demo_prepare_descriptor_pool(demo);
Chia-I Wu6a3c8972015-01-04 16:27:24 +08002175 demo_prepare_descriptor_set(demo);
Courtney Goeltzenleuchterefc58ae2015-02-17 09:48:44 -07002176
Chia-I Wuf973e322015-07-08 13:34:24 +08002177 demo_prepare_framebuffers(demo);
Courtney Goeltzenleuchterefc58ae2015-02-17 09:48:44 -07002178
Ian Elliotta0781972015-08-21 15:09:33 -06002179 for (uint32_t i = 0; i < demo->swapchainImageCount; i++) {
Courtney Goeltzenleuchterefc58ae2015-02-17 09:48:44 -07002180 demo->current_buffer = i;
Tony Barboura72d9492017-01-11 13:35:09 -07002181 demo_draw_build_cmd(demo, demo->swapchain_image_resources[i].cmd);
Courtney Goeltzenleuchterefc58ae2015-02-17 09:48:44 -07002182 }
2183
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -06002184 /*
2185 * Prepare functions above may generate pipeline commands
2186 * that need to be flushed before beginning the render loop.
2187 */
2188 demo_flush_init_cmd(demo);
Tony Barbour16156cb2016-10-19 14:15:49 -06002189 if (demo->staging_texture.image) {
2190 demo_destroy_texture_image(demo, &demo->staging_texture);
2191 }
Courtney Goeltzenleuchter752eb8e2015-03-25 13:36:41 -06002192
Courtney Goeltzenleuchterefc58ae2015-02-17 09:48:44 -07002193 demo->current_buffer = 0;
Mike Stroyanbb60b382015-10-28 09:46:57 -06002194 demo->prepared = true;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002195}
2196
Karl Schultze4dc75c2016-02-02 15:37:51 -07002197static void demo_cleanup(struct demo *demo) {
David Pinedo2bb7c932015-06-18 17:03:14 -06002198 uint32_t i;
2199
2200 demo->prepared = false;
Tony Barbource7524e2016-07-28 12:01:45 -06002201 vkDeviceWaitIdle(demo->device);
David Pinedo2bb7c932015-06-18 17:03:14 -06002202
Tony Barbour66a56c32016-09-21 13:10:56 -06002203 // Wait for fences from present operations
2204 for (i = 0; i < FRAME_LAG; i++) {
szdarkhackd322ff02016-10-08 09:51:22 +03002205 vkWaitForFences(demo->device, 1, &demo->fences[i], VK_TRUE, UINT64_MAX);
Tony Barbour66a56c32016-09-21 13:10:56 -06002206 vkDestroyFence(demo->device, demo->fences[i], NULL);
2207 vkDestroySemaphore(demo->device, demo->image_acquired_semaphores[i], NULL);
2208 vkDestroySemaphore(demo->device, demo->draw_complete_semaphores[i], NULL);
2209 if (demo->separate_present_queue) {
2210 vkDestroySemaphore(demo->device, demo->image_ownership_semaphores[i], NULL);
2211 }
2212 }
2213
Jeremy Kniager602e4182018-01-19 10:52:34 -07002214 // If the window is currently minimized, demo_resize has already done some cleanup for us.
2215 if (!demo->is_minimized) {
2216 for (i = 0; i < demo->swapchainImageCount; i++) {
2217 vkDestroyFramebuffer(demo->device, demo->swapchain_image_resources[i].framebuffer, NULL);
2218 }
2219 vkDestroyDescriptorPool(demo->device, demo->desc_pool, NULL);
Chia-I Wuf973e322015-07-08 13:34:24 +08002220
Jeremy Kniager602e4182018-01-19 10:52:34 -07002221 vkDestroyPipeline(demo->device, demo->pipeline, NULL);
2222 vkDestroyPipelineCache(demo->device, demo->pipelineCache, NULL);
2223 vkDestroyRenderPass(demo->device, demo->render_pass, NULL);
2224 vkDestroyPipelineLayout(demo->device, demo->pipeline_layout, NULL);
2225 vkDestroyDescriptorSetLayout(demo->device, demo->desc_layout, NULL);
David Pinedo2bb7c932015-06-18 17:03:14 -06002226
Jeremy Kniager602e4182018-01-19 10:52:34 -07002227 for (i = 0; i < DEMO_TEXTURE_COUNT; i++) {
2228 vkDestroyImageView(demo->device, demo->textures[i].view, NULL);
2229 vkDestroyImage(demo->device, demo->textures[i].image, NULL);
2230 vkFreeMemory(demo->device, demo->textures[i].mem, NULL);
2231 vkDestroySampler(demo->device, demo->textures[i].sampler, NULL);
2232 }
2233 demo->fpDestroySwapchainKHR(demo->device, demo->swapchain, NULL);
David Pinedo2bb7c932015-06-18 17:03:14 -06002234
Jeremy Kniager602e4182018-01-19 10:52:34 -07002235 vkDestroyImageView(demo->device, demo->depth.view, NULL);
2236 vkDestroyImage(demo->device, demo->depth.image, NULL);
2237 vkFreeMemory(demo->device, demo->depth.mem, NULL);
David Pinedo2bb7c932015-06-18 17:03:14 -06002238
Jeremy Kniager602e4182018-01-19 10:52:34 -07002239 for (i = 0; i < demo->swapchainImageCount; i++) {
2240 vkDestroyImageView(demo->device, demo->swapchain_image_resources[i].view, NULL);
2241 vkFreeCommandBuffers(demo->device, demo->cmd_pool, 1, &demo->swapchain_image_resources[i].cmd);
2242 vkDestroyBuffer(demo->device, demo->swapchain_image_resources[i].uniform_buffer, NULL);
2243 vkFreeMemory(demo->device, demo->swapchain_image_resources[i].uniform_memory, NULL);
2244 }
2245 free(demo->swapchain_image_resources);
2246 free(demo->queue_props);
2247 vkDestroyCommandPool(demo->device, demo->cmd_pool, NULL);
Tony Barbour66a56c32016-09-21 13:10:56 -06002248
Jeremy Kniager602e4182018-01-19 10:52:34 -07002249 if (demo->separate_present_queue) {
2250 vkDestroyCommandPool(demo->device, demo->present_cmd_pool, NULL);
2251 }
Tony Barbour22e06272016-09-07 16:07:56 -06002252 }
Tony Barbourffa9a422016-11-10 16:45:15 -07002253 vkDeviceWaitIdle(demo->device);
Chia-I Wu63636062015-10-26 21:10:41 +08002254 vkDestroyDevice(demo->device, NULL);
Tony Barbourd70b42c2015-06-30 14:14:19 -06002255 if (demo->validate) {
Mark Young66510e52017-11-10 10:05:14 -07002256 demo->DestroyDebugUtilsMessengerEXT(demo->inst, demo->dbg_messenger, NULL);
Tony Barbourd70b42c2015-06-30 14:14:19 -06002257 }
Ian Elliottb08e0d92015-11-20 11:55:46 -07002258 vkDestroySurfaceKHR(demo->inst, demo->surface, NULL);
David Pinedo2bb7c932015-06-18 17:03:14 -06002259
Tony Barbour153cb062016-12-07 13:43:36 -07002260#if defined(VK_USE_PLATFORM_XLIB_KHR)
Tony Barbour78d6b572016-11-14 14:46:33 -07002261 XDestroyWindow(demo->display, demo->xlib_window);
2262 XCloseDisplay(demo->display);
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002263#elif defined(VK_USE_PLATFORM_XCB_KHR)
Pavol Klacansky573a19d2016-05-10 03:08:19 -06002264 xcb_destroy_window(demo->connection, demo->xcb_window);
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002265 xcb_disconnect(demo->connection);
2266 free(demo->atom_wm_delete_window);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002267#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
Joey Bzdek15eb0702017-06-07 09:40:36 -06002268 wl_keyboard_destroy(demo->keyboard);
2269 wl_pointer_destroy(demo->pointer);
2270 wl_seat_destroy(demo->seat);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002271 wl_shell_surface_destroy(demo->shell_surface);
2272 wl_surface_destroy(demo->window);
2273 wl_shell_destroy(demo->shell);
2274 wl_compositor_destroy(demo->compositor);
2275 wl_registry_destroy(demo->registry);
2276 wl_display_disconnect(demo->display);
Tony Barbourefd0c5a2016-12-07 14:45:12 -07002277#elif defined(VK_USE_PLATFORM_MIR_KHR)
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002278#endif
Karl Schultz86429112017-06-20 11:27:59 -06002279
2280 vkDestroyInstance(demo->inst, NULL);
David Pinedo2bb7c932015-06-18 17:03:14 -06002281}
2282
Karl Schultze4dc75c2016-02-02 15:37:51 -07002283static void demo_resize(struct demo *demo) {
Ian Elliottcf074d32015-10-16 18:02:43 -06002284 uint32_t i;
2285
Mike Stroyanbb60b382015-10-28 09:46:57 -06002286 // Don't react to resize until after first initialization.
2287 if (!demo->prepared) {
Jeremy Kniager602e4182018-01-19 10:52:34 -07002288 if (demo->is_minimized) {
2289 demo_prepare(demo);
2290 }
Mike Stroyanbb60b382015-10-28 09:46:57 -06002291 return;
2292 }
Ian Elliottcf074d32015-10-16 18:02:43 -06002293 // In order to properly resize the window, we must re-create the swapchain
2294 // AND redo the command buffers, etc.
2295 //
2296 // First, perform part of the demo_cleanup() function:
2297 demo->prepared = false;
Tony Barbource7524e2016-07-28 12:01:45 -06002298 vkDeviceWaitIdle(demo->device);
Ian Elliottcf074d32015-10-16 18:02:43 -06002299
2300 for (i = 0; i < demo->swapchainImageCount; i++) {
Tony Barboura72d9492017-01-11 13:35:09 -07002301 vkDestroyFramebuffer(demo->device, demo->swapchain_image_resources[i].framebuffer, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06002302 }
Chia-I Wu63636062015-10-26 21:10:41 +08002303 vkDestroyDescriptorPool(demo->device, demo->desc_pool, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06002304
Chia-I Wu63636062015-10-26 21:10:41 +08002305 vkDestroyPipeline(demo->device, demo->pipeline, NULL);
2306 vkDestroyPipelineCache(demo->device, demo->pipelineCache, NULL);
2307 vkDestroyRenderPass(demo->device, demo->render_pass, NULL);
2308 vkDestroyPipelineLayout(demo->device, demo->pipeline_layout, NULL);
2309 vkDestroyDescriptorSetLayout(demo->device, demo->desc_layout, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06002310
2311 for (i = 0; i < DEMO_TEXTURE_COUNT; i++) {
Chia-I Wu63636062015-10-26 21:10:41 +08002312 vkDestroyImageView(demo->device, demo->textures[i].view, NULL);
2313 vkDestroyImage(demo->device, demo->textures[i].image, NULL);
2314 vkFreeMemory(demo->device, demo->textures[i].mem, NULL);
2315 vkDestroySampler(demo->device, demo->textures[i].sampler, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06002316 }
Ian Elliottcf074d32015-10-16 18:02:43 -06002317
Chia-I Wu63636062015-10-26 21:10:41 +08002318 vkDestroyImageView(demo->device, demo->depth.view, NULL);
2319 vkDestroyImage(demo->device, demo->depth.image, NULL);
2320 vkFreeMemory(demo->device, demo->depth.mem, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06002321
Ian Elliottcf074d32015-10-16 18:02:43 -06002322 for (i = 0; i < demo->swapchainImageCount; i++) {
Tony Barboura72d9492017-01-11 13:35:09 -07002323 vkDestroyImageView(demo->device, demo->swapchain_image_resources[i].view, NULL);
Dave Houlton5fa47912018-02-16 11:02:26 -07002324 vkFreeCommandBuffers(demo->device, demo->cmd_pool, 1, &demo->swapchain_image_resources[i].cmd);
Tony Barboura72d9492017-01-11 13:35:09 -07002325 vkDestroyBuffer(demo->device, demo->swapchain_image_resources[i].uniform_buffer, NULL);
2326 vkFreeMemory(demo->device, demo->swapchain_image_resources[i].uniform_memory, NULL);
Ian Elliottcf074d32015-10-16 18:02:43 -06002327 }
Chia-I Wu63636062015-10-26 21:10:41 +08002328 vkDestroyCommandPool(demo->device, demo->cmd_pool, NULL);
Jeremy Kniager602e4182018-01-19 10:52:34 -07002329 demo->cmd_pool = VK_NULL_HANDLE;
Tony Barbour22e06272016-09-07 16:07:56 -06002330 if (demo->separate_present_queue) {
2331 vkDestroyCommandPool(demo->device, demo->present_cmd_pool, NULL);
2332 }
Tony Barboura72d9492017-01-11 13:35:09 -07002333 free(demo->swapchain_image_resources);
Ian Elliottcf074d32015-10-16 18:02:43 -06002334
Ian Elliottcf074d32015-10-16 18:02:43 -06002335 // Second, re-perform the demo_prepare() function, which will re-create the
2336 // swapchain:
2337 demo_prepare(demo);
2338}
2339
David Pinedo2bb7c932015-06-18 17:03:14 -06002340// On MS-Windows, make this a global, so it's available to WndProc()
2341struct demo demo;
2342
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002343#if defined(VK_USE_PLATFORM_WIN32_KHR)
Karl Schultze4dc75c2016-02-02 15:37:51 -07002344static void demo_run(struct demo *demo) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002345 if (!demo->prepared) return;
Tony Barbource7524e2016-07-28 12:01:45 -06002346
Ian Elliott639ca472015-04-16 15:23:05 -06002347 demo_draw(demo);
David Pinedo2bb7c932015-06-18 17:03:14 -06002348 demo->curFrame++;
Karl Schultze4dc75c2016-02-02 15:37:51 -07002349 if (demo->frameCount != INT_MAX && demo->curFrame == demo->frameCount) {
Karl Schultz8a663912016-03-24 18:43:41 -06002350 PostQuitMessage(validation_error);
David Pinedo2bb7c932015-06-18 17:03:14 -06002351 }
David Pinedo2bb7c932015-06-18 17:03:14 -06002352}
Ian Elliott639ca472015-04-16 15:23:05 -06002353
2354// MS-Windows event handling function:
Karl Schultze4dc75c2016-02-02 15:37:51 -07002355LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
2356 switch (uMsg) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002357 case WM_CLOSE:
2358 PostQuitMessage(validation_error);
2359 break;
2360 case WM_PAINT:
2361 // The validation callback calls MessageBox which can generate paint
2362 // events - don't make more Vulkan calls if we got here from the
2363 // callback
2364 if (!in_callback) {
2365 demo_run(&demo);
2366 }
2367 break;
2368 case WM_GETMINMAXINFO: // set window's minimum size
2369 ((MINMAXINFO *)lParam)->ptMinTrackSize = demo.minsize;
2370 return 0;
2371 case WM_SIZE:
2372 // Resize the application to the new window size, except when
2373 // it was minimized. Vulkan doesn't support images or swapchains
2374 // with width=0 and height=0.
2375 if (wParam != SIZE_MINIMIZED) {
2376 demo.width = lParam & 0xffff;
2377 demo.height = (lParam & 0xffff0000) >> 16;
2378 demo_resize(&demo);
2379 }
2380 break;
2381 default:
2382 break;
Ian Elliott639ca472015-04-16 15:23:05 -06002383 }
2384 return (DefWindowProc(hWnd, uMsg, wParam, lParam));
2385}
2386
Karl Schultze4dc75c2016-02-02 15:37:51 -07002387static void demo_create_window(struct demo *demo) {
2388 WNDCLASSEX win_class;
Ian Elliott639ca472015-04-16 15:23:05 -06002389
2390 // Initialize the window class structure:
2391 win_class.cbSize = sizeof(WNDCLASSEX);
2392 win_class.style = CS_HREDRAW | CS_VREDRAW;
2393 win_class.lpfnWndProc = WndProc;
2394 win_class.cbClsExtra = 0;
2395 win_class.cbWndExtra = 0;
Dave Houlton5fa47912018-02-16 11:02:26 -07002396 win_class.hInstance = demo->connection; // hInstance
Ian Elliott639ca472015-04-16 15:23:05 -06002397 win_class.hIcon = LoadIcon(NULL, IDI_APPLICATION);
2398 win_class.hCursor = LoadCursor(NULL, IDC_ARROW);
2399 win_class.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
2400 win_class.lpszMenuName = NULL;
2401 win_class.lpszClassName = demo->name;
2402 win_class.hIconSm = LoadIcon(NULL, IDI_WINLOGO);
2403 // Register window class:
2404 if (!RegisterClassEx(&win_class)) {
2405 // It didn't work, so try to give a useful error:
2406 printf("Unexpected error trying to start the application!\n");
2407 fflush(stdout);
2408 exit(1);
2409 }
2410 // Create window with the registered class:
Karl Schultze4dc75c2016-02-02 15:37:51 -07002411 RECT wr = {0, 0, demo->width, demo->height};
Mike Stroyanb46779e2015-06-15 14:20:13 -06002412 AdjustWindowRect(&wr, WS_OVERLAPPEDWINDOW, FALSE);
Ian Elliott639ca472015-04-16 15:23:05 -06002413 demo->window = CreateWindowEx(0,
Dave Houlton5fa47912018-02-16 11:02:26 -07002414 demo->name, // class name
2415 demo->name, // app name
2416 WS_OVERLAPPEDWINDOW | // window style
Karl Schultze4dc75c2016-02-02 15:37:51 -07002417 WS_VISIBLE | WS_SYSMENU,
Dave Houlton5fa47912018-02-16 11:02:26 -07002418 100, 100, // x/y coords
2419 wr.right - wr.left, // width
2420 wr.bottom - wr.top, // height
2421 NULL, // handle to parent
2422 NULL, // handle to menu
2423 demo->connection, // hInstance
2424 NULL); // no extra parameters
Ian Elliott639ca472015-04-16 15:23:05 -06002425 if (!demo->window) {
2426 // It didn't work, so try to give a useful error:
2427 printf("Cannot create a window in which to draw!\n");
2428 fflush(stdout);
2429 exit(1);
2430 }
Rene Lindsayb9403da2016-07-01 18:00:30 -06002431 // Window client area size must be at least 1 pixel high, to prevent crash.
2432 demo->minsize.x = GetSystemMetrics(SM_CXMINTRACK);
Dave Houlton5fa47912018-02-16 11:02:26 -07002433 demo->minsize.y = GetSystemMetrics(SM_CYMINTRACK) + 1;
Ian Elliott639ca472015-04-16 15:23:05 -06002434}
Tony Barbour8295ac42016-08-08 11:04:17 -06002435#elif defined(VK_USE_PLATFORM_XLIB_KHR)
Tony Barbour2593b182016-04-19 10:57:58 -06002436static void demo_create_xlib_window(struct demo *demo) {
Mike Weiblen5d2ad542018-02-13 13:56:13 -07002437 const char *display_envar = getenv("DISPLAY");
2438 if (display_envar == NULL || display_envar[0] == '\0') {
2439 printf("Environment variable DISPLAY requires a valid value.\nExiting ...\n");
2440 fflush(stdout);
2441 exit(1);
2442 }
Tony Barbour2593b182016-04-19 10:57:58 -06002443
Tony Barbouree9cd372017-01-31 16:09:58 -07002444 XInitThreads();
Tony Barbour2593b182016-04-19 10:57:58 -06002445 demo->display = XOpenDisplay(NULL);
2446 long visualMask = VisualScreenMask;
2447 int numberOfVisuals;
Dave Houlton5fa47912018-02-16 11:02:26 -07002448 XVisualInfo vInfoTemplate = {};
Tony Barbour2593b182016-04-19 10:57:58 -06002449 vInfoTemplate.screen = DefaultScreen(demo->display);
Dave Houlton5fa47912018-02-16 11:02:26 -07002450 XVisualInfo *visualInfo = XGetVisualInfo(demo->display, visualMask, &vInfoTemplate, &numberOfVisuals);
Tony Barbour2593b182016-04-19 10:57:58 -06002451
Dave Houlton5fa47912018-02-16 11:02:26 -07002452 Colormap colormap =
2453 XCreateColormap(demo->display, RootWindow(demo->display, vInfoTemplate.screen), visualInfo->visual, AllocNone);
Tony Barbour2593b182016-04-19 10:57:58 -06002454
Dave Houlton5fa47912018-02-16 11:02:26 -07002455 XSetWindowAttributes windowAttributes = {};
Tony Barbour2593b182016-04-19 10:57:58 -06002456 windowAttributes.colormap = colormap;
2457 windowAttributes.background_pixel = 0xFFFFFFFF;
2458 windowAttributes.border_pixel = 0;
Dave Houlton5fa47912018-02-16 11:02:26 -07002459 windowAttributes.event_mask = KeyPressMask | KeyReleaseMask | StructureNotifyMask | ExposureMask;
Tony Barbour2593b182016-04-19 10:57:58 -06002460
Dave Houlton5fa47912018-02-16 11:02:26 -07002461 demo->xlib_window = XCreateWindow(demo->display, RootWindow(demo->display, vInfoTemplate.screen), 0, 0, demo->width,
2462 demo->height, 0, visualInfo->depth, InputOutput, visualInfo->visual,
2463 CWBackPixel | CWBorderPixel | CWEventMask | CWColormap, &windowAttributes);
Tony Barbour2593b182016-04-19 10:57:58 -06002464
2465 XSelectInput(demo->display, demo->xlib_window, ExposureMask | KeyPressMask);
2466 XMapWindow(demo->display, demo->xlib_window);
2467 XFlush(demo->display);
Dave Houlton5fa47912018-02-16 11:02:26 -07002468 demo->xlib_wm_delete_window = XInternAtom(demo->display, "WM_DELETE_WINDOW", False);
Tony Barbour2593b182016-04-19 10:57:58 -06002469}
2470static void demo_handle_xlib_event(struct demo *demo, const XEvent *event) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002471 switch (event->type) {
2472 case ClientMessage:
2473 if ((Atom)event->xclient.data.l[0] == demo->xlib_wm_delete_window) demo->quit = true;
Tony Barbour2593b182016-04-19 10:57:58 -06002474 break;
Dave Houlton5fa47912018-02-16 11:02:26 -07002475 case KeyPress:
2476 switch (event->xkey.keycode) {
2477 case 0x9: // Escape
2478 demo->quit = true;
2479 break;
2480 case 0x71: // left arrow key
2481 demo->spin_angle -= demo->spin_increment;
2482 break;
2483 case 0x72: // right arrow key
2484 demo->spin_angle += demo->spin_increment;
2485 break;
2486 case 0x41: // space bar
2487 demo->pause = !demo->pause;
2488 break;
2489 }
Tony Barbour2593b182016-04-19 10:57:58 -06002490 break;
Dave Houlton5fa47912018-02-16 11:02:26 -07002491 case ConfigureNotify:
2492 if ((demo->width != event->xconfigure.width) || (demo->height != event->xconfigure.height)) {
2493 demo->width = event->xconfigure.width;
2494 demo->height = event->xconfigure.height;
2495 demo_resize(demo);
2496 }
Karl Schultz6ddf1e02017-01-04 10:31:20 -07002497 break;
Dave Houlton5fa47912018-02-16 11:02:26 -07002498 default:
Tony Barbour2593b182016-04-19 10:57:58 -06002499 break;
Tony Barbour2593b182016-04-19 10:57:58 -06002500 }
Tony Barbour2593b182016-04-19 10:57:58 -06002501}
2502
2503static void demo_run_xlib(struct demo *demo) {
Tony Barbour2593b182016-04-19 10:57:58 -06002504 while (!demo->quit) {
2505 XEvent event;
2506
2507 if (demo->pause) {
2508 XNextEvent(demo->display, &event);
2509 demo_handle_xlib_event(demo, &event);
Karl Schultz6ddf1e02017-01-04 10:31:20 -07002510 }
2511 while (XPending(demo->display) > 0) {
2512 XNextEvent(demo->display, &event);
2513 demo_handle_xlib_event(demo, &event);
Tony Barbour2593b182016-04-19 10:57:58 -06002514 }
2515
Tony Barbour2593b182016-04-19 10:57:58 -06002516 demo_draw(demo);
Tony Barbour2593b182016-04-19 10:57:58 -06002517 demo->curFrame++;
Dave Houlton5fa47912018-02-16 11:02:26 -07002518 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) demo->quit = true;
Tony Barbour2593b182016-04-19 10:57:58 -06002519 }
2520}
Tony Barbour153cb062016-12-07 13:43:36 -07002521#elif defined(VK_USE_PLATFORM_XCB_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002522static void demo_handle_xcb_event(struct demo *demo, const xcb_generic_event_t *event) {
Piers Daniell735ee532015-02-23 16:23:13 -07002523 uint8_t event_code = event->response_type & 0x7f;
Courtney Goeltzenleuchter98cb2cb2014-11-06 14:27:52 -07002524 switch (event_code) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002525 case XCB_EXPOSE:
2526 // TODO: Resize window
2527 break;
2528 case XCB_CLIENT_MESSAGE:
2529 if ((*(xcb_client_message_event_t *)event).data.data32[0] == (*demo->atom_wm_delete_window).atom) {
2530 demo->quit = true;
2531 }
2532 break;
2533 case XCB_KEY_RELEASE: {
2534 const xcb_key_release_event_t *key = (const xcb_key_release_event_t *)event;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002535
Dave Houlton5fa47912018-02-16 11:02:26 -07002536 switch (key->detail) {
2537 case 0x9: // Escape
2538 demo->quit = true;
2539 break;
2540 case 0x71: // left arrow key
2541 demo->spin_angle -= demo->spin_increment;
2542 break;
2543 case 0x72: // right arrow key
2544 demo->spin_angle += demo->spin_increment;
2545 break;
2546 case 0x41: // space bar
2547 demo->pause = !demo->pause;
2548 break;
2549 }
2550 } break;
2551 case XCB_CONFIGURE_NOTIFY: {
2552 const xcb_configure_notify_event_t *cfg = (const xcb_configure_notify_event_t *)event;
2553 if ((demo->width != cfg->width) || (demo->height != cfg->height)) {
2554 demo->width = cfg->width;
2555 demo->height = cfg->height;
2556 demo_resize(demo);
2557 }
2558 } break;
2559 default:
Karl Schultze4dc75c2016-02-02 15:37:51 -07002560 break;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002561 }
2562}
2563
Tony Barbour2593b182016-04-19 10:57:58 -06002564static void demo_run_xcb(struct demo *demo) {
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002565 xcb_flush(demo->connection);
2566
2567 while (!demo->quit) {
2568 xcb_generic_event_t *event;
2569
Courtney Goeltzenleuchterc465d6c2014-11-18 11:28:09 -07002570 if (demo->pause) {
2571 event = xcb_wait_for_event(demo->connection);
Dave Houlton5fa47912018-02-16 11:02:26 -07002572 } else {
Courtney Goeltzenleuchterc465d6c2014-11-18 11:28:09 -07002573 event = xcb_poll_for_event(demo->connection);
Karl Schultz6ddf1e02017-01-04 10:31:20 -07002574 }
2575 while (event) {
2576 demo_handle_xcb_event(demo, event);
2577 free(event);
2578 event = xcb_poll_for_event(demo->connection);
Courtney Goeltzenleuchter98085552014-11-10 11:13:13 -07002579 }
Courtney Goeltzenleuchterc465d6c2014-11-18 11:28:09 -07002580
Courtney Goeltzenleuchter98085552014-11-10 11:13:13 -07002581 demo_draw(demo);
David Pinedo2bb7c932015-06-18 17:03:14 -06002582 demo->curFrame++;
Dave Houlton5fa47912018-02-16 11:02:26 -07002583 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) demo->quit = true;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002584 }
2585}
2586
Tony Barbour2593b182016-04-19 10:57:58 -06002587static void demo_create_xcb_window(struct demo *demo) {
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002588 uint32_t value_mask, value_list[32];
2589
Tony Barbour2593b182016-04-19 10:57:58 -06002590 demo->xcb_window = xcb_generate_id(demo->connection);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002591
2592 value_mask = XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK;
2593 value_list[0] = demo->screen->black_pixel;
Dave Houlton5fa47912018-02-16 11:02:26 -07002594 value_list[1] = XCB_EVENT_MASK_KEY_RELEASE | XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_STRUCTURE_NOTIFY;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002595
Dave Houlton5fa47912018-02-16 11:02:26 -07002596 xcb_create_window(demo->connection, XCB_COPY_FROM_PARENT, demo->xcb_window, demo->screen->root, 0, 0, demo->width, demo->height,
2597 0, XCB_WINDOW_CLASS_INPUT_OUTPUT, demo->screen->root_visual, value_mask, value_list);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002598
Courtney Goeltzenleuchter98cb2cb2014-11-06 14:27:52 -07002599 /* Magic code that will send notification when window is destroyed */
Dave Houlton5fa47912018-02-16 11:02:26 -07002600 xcb_intern_atom_cookie_t cookie = xcb_intern_atom(demo->connection, 1, 12, "WM_PROTOCOLS");
2601 xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(demo->connection, cookie, 0);
Courtney Goeltzenleuchter98cb2cb2014-11-06 14:27:52 -07002602
Dave Houlton5fa47912018-02-16 11:02:26 -07002603 xcb_intern_atom_cookie_t cookie2 = xcb_intern_atom(demo->connection, 0, 16, "WM_DELETE_WINDOW");
2604 demo->atom_wm_delete_window = xcb_intern_atom_reply(demo->connection, cookie2, 0);
Courtney Goeltzenleuchter98cb2cb2014-11-06 14:27:52 -07002605
Dave Houlton5fa47912018-02-16 11:02:26 -07002606 xcb_change_property(demo->connection, XCB_PROP_MODE_REPLACE, demo->xcb_window, (*reply).atom, 4, 32, 1,
Courtney Goeltzenleuchter98cb2cb2014-11-06 14:27:52 -07002607 &(*demo->atom_wm_delete_window).atom);
2608 free(reply);
2609
Tony Barbour2593b182016-04-19 10:57:58 -06002610 xcb_map_window(demo->connection, demo->xcb_window);
David Pinedo2bb7c932015-06-18 17:03:14 -06002611
Karl Schultze4dc75c2016-02-02 15:37:51 -07002612 // Force the x/y coordinates to 100,100 results are identical in consecutive
2613 // runs
2614 const uint32_t coords[] = {100, 100};
Dave Houlton5fa47912018-02-16 11:02:26 -07002615 xcb_configure_window(demo->connection, demo->xcb_window, XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y, coords);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002616}
Tony Barbour6b131662016-08-25 13:14:45 -06002617// VK_USE_PLATFORM_XCB_KHR
2618#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002619static void demo_run(struct demo *demo) {
2620 while (!demo->quit) {
Joey Bzdek15eb0702017-06-07 09:40:36 -06002621 if (demo->pause) {
2622 wl_display_dispatch(demo->display); // block and wait for input
Joey Bzdek33bc5c82017-06-14 10:33:36 -06002623 } else {
Joey Bzdek15eb0702017-06-07 09:40:36 -06002624 wl_display_dispatch_pending(demo->display); // don't block
2625 demo_draw(demo);
2626 demo->curFrame++;
2627 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) demo->quit = true;
2628 }
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002629 }
2630}
2631
Dave Houlton5fa47912018-02-16 11:02:26 -07002632static void handle_ping(void *data UNUSED, struct wl_shell_surface *shell_surface, uint32_t serial) {
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002633 wl_shell_surface_pong(shell_surface, serial);
2634}
2635
Dave Houlton5fa47912018-02-16 11:02:26 -07002636static void handle_configure(void *data UNUSED, struct wl_shell_surface *shell_surface UNUSED, uint32_t edges UNUSED,
2637 int32_t width UNUSED, int32_t height UNUSED) {}
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002638
Dave Houlton5fa47912018-02-16 11:02:26 -07002639static void handle_popup_done(void *data UNUSED, struct wl_shell_surface *shell_surface UNUSED) {}
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002640
Dave Houlton5fa47912018-02-16 11:02:26 -07002641static const struct wl_shell_surface_listener shell_surface_listener = {handle_ping, handle_configure, handle_popup_done};
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002642
2643static void demo_create_window(struct demo *demo) {
2644 demo->window = wl_compositor_create_surface(demo->compositor);
2645 if (!demo->window) {
2646 printf("Can not create wayland_surface from compositor!\n");
2647 fflush(stdout);
2648 exit(1);
2649 }
2650
2651 demo->shell_surface = wl_shell_get_shell_surface(demo->shell, demo->window);
2652 if (!demo->shell_surface) {
2653 printf("Can not get shell_surface from wayland_surface!\n");
2654 fflush(stdout);
2655 exit(1);
2656 }
Dave Houlton5fa47912018-02-16 11:02:26 -07002657 wl_shell_surface_add_listener(demo->shell_surface, &shell_surface_listener, demo);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002658 wl_shell_surface_set_toplevel(demo->shell_surface);
2659 wl_shell_surface_set_title(demo->shell_surface, APP_SHORT_NAME);
2660}
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002661#elif defined(VK_USE_PLATFORM_ANDROID_KHR)
2662static void demo_run(struct demo *demo) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002663 if (!demo->prepared) return;
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002664
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002665 demo_draw(demo);
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002666 demo->curFrame++;
2667}
Karl Schultz206b1c52018-04-13 18:02:07 -06002668#elif defined(VK_USE_PLATFORM_MACOS_MVK)
2669static void demo_run(struct demo *demo) {
2670 demo_draw(demo);
2671 demo->curFrame++;
2672 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) {
2673 demo->quit = TRUE;
2674 }
2675}
Tony Barbourefd0c5a2016-12-07 14:45:12 -07002676#elif defined(VK_USE_PLATFORM_MIR_KHR)
Damien Leone600c3052017-01-31 10:26:07 -07002677#elif defined(VK_USE_PLATFORM_DISPLAY_KHR)
2678static VkResult demo_create_display_surface(struct demo *demo) {
2679 VkResult U_ASSERT_ONLY err;
2680 uint32_t display_count;
2681 uint32_t mode_count;
2682 uint32_t plane_count;
2683 VkDisplayPropertiesKHR display_props;
2684 VkDisplayKHR display;
2685 VkDisplayModePropertiesKHR mode_props;
2686 VkDisplayPlanePropertiesKHR *plane_props;
2687 VkBool32 found_plane = VK_FALSE;
2688 uint32_t plane_index;
2689 VkExtent2D image_extent;
2690 VkDisplaySurfaceCreateInfoKHR create_info;
2691
2692 // Get the first display
2693 err = vkGetPhysicalDeviceDisplayPropertiesKHR(demo->gpu, &display_count, NULL);
2694 assert(!err);
2695
2696 if (display_count == 0) {
2697 printf("Cannot find any display!\n");
2698 fflush(stdout);
2699 exit(1);
2700 }
2701
2702 display_count = 1;
2703 err = vkGetPhysicalDeviceDisplayPropertiesKHR(demo->gpu, &display_count, &display_props);
2704 assert(!err || (err == VK_INCOMPLETE));
2705
2706 display = display_props.display;
2707
2708 // Get the first mode of the display
2709 err = vkGetDisplayModePropertiesKHR(demo->gpu, display, &mode_count, NULL);
2710 assert(!err);
2711
2712 if (mode_count == 0) {
2713 printf("Cannot find any mode for the display!\n");
2714 fflush(stdout);
2715 exit(1);
2716 }
2717
2718 mode_count = 1;
2719 err = vkGetDisplayModePropertiesKHR(demo->gpu, display, &mode_count, &mode_props);
2720 assert(!err || (err == VK_INCOMPLETE));
2721
2722 // Get the list of planes
2723 err = vkGetPhysicalDeviceDisplayPlanePropertiesKHR(demo->gpu, &plane_count, NULL);
2724 assert(!err);
2725
2726 if (plane_count == 0) {
2727 printf("Cannot find any plane!\n");
2728 fflush(stdout);
2729 exit(1);
2730 }
2731
2732 plane_props = malloc(sizeof(VkDisplayPlanePropertiesKHR) * plane_count);
2733 assert(plane_props);
2734
2735 err = vkGetPhysicalDeviceDisplayPlanePropertiesKHR(demo->gpu, &plane_count, plane_props);
2736 assert(!err);
2737
2738 // Find a plane compatible with the display
2739 for (plane_index = 0; plane_index < plane_count; plane_index++) {
2740 uint32_t supported_count;
2741 VkDisplayKHR *supported_displays;
2742
2743 // Disqualify planes that are bound to a different display
Dave Houlton5fa47912018-02-16 11:02:26 -07002744 if ((plane_props[plane_index].currentDisplay != VK_NULL_HANDLE) && (plane_props[plane_index].currentDisplay != display)) {
Damien Leone600c3052017-01-31 10:26:07 -07002745 continue;
2746 }
2747
2748 err = vkGetDisplayPlaneSupportedDisplaysKHR(demo->gpu, plane_index, &supported_count, NULL);
2749 assert(!err);
2750
2751 if (supported_count == 0) {
2752 continue;
2753 }
2754
2755 supported_displays = malloc(sizeof(VkDisplayKHR) * supported_count);
2756 assert(supported_displays);
2757
2758 err = vkGetDisplayPlaneSupportedDisplaysKHR(demo->gpu, plane_index, &supported_count, supported_displays);
2759 assert(!err);
2760
2761 for (uint32_t i = 0; i < supported_count; i++) {
2762 if (supported_displays[i] == display) {
2763 found_plane = VK_TRUE;
2764 break;
2765 }
2766 }
2767
2768 free(supported_displays);
2769
2770 if (found_plane) {
2771 break;
2772 }
2773 }
2774
2775 if (!found_plane) {
2776 printf("Cannot find a plane compatible with the display!\n");
2777 fflush(stdout);
2778 exit(1);
2779 }
2780
2781 free(plane_props);
2782
Tony Barbour820b55b2017-03-14 08:55:46 -06002783 VkDisplayPlaneCapabilitiesKHR planeCaps;
2784 vkGetDisplayPlaneCapabilitiesKHR(demo->gpu, mode_props.displayMode, plane_index, &planeCaps);
2785 // Find a supported alpha mode
Mark Young66510e52017-11-10 10:05:14 -07002786 VkCompositeAlphaFlagBitsKHR alphaMode = VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR;
2787 VkCompositeAlphaFlagBitsKHR alphaModes[4] = {
Tony Barbour820b55b2017-03-14 08:55:46 -06002788 VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR,
2789 VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR,
2790 VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR,
2791 VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR,
2792 };
2793 for (uint32_t i = 0; i < sizeof(alphaModes); i++) {
2794 if (planeCaps.supportedAlpha & alphaModes[i]) {
2795 alphaMode = alphaModes[i];
2796 break;
2797 }
2798 }
Damien Leone600c3052017-01-31 10:26:07 -07002799 image_extent.width = mode_props.parameters.visibleRegion.width;
2800 image_extent.height = mode_props.parameters.visibleRegion.height;
2801
2802 create_info.sType = VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR;
2803 create_info.pNext = NULL;
2804 create_info.flags = 0;
2805 create_info.displayMode = mode_props.displayMode;
2806 create_info.planeIndex = plane_index;
2807 create_info.planeStackIndex = plane_props[plane_index].currentStackIndex;
2808 create_info.transform = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
Tony Barbour820b55b2017-03-14 08:55:46 -06002809 create_info.alphaMode = alphaMode;
Damien Leone600c3052017-01-31 10:26:07 -07002810 create_info.globalAlpha = 1.0f;
2811 create_info.imageExtent = image_extent;
2812
2813 return vkCreateDisplayPlaneSurfaceKHR(demo->inst, &create_info, NULL, &demo->surface);
2814}
2815
Dave Houlton5fa47912018-02-16 11:02:26 -07002816static void demo_run_display(struct demo *demo) {
Damien Leone600c3052017-01-31 10:26:07 -07002817 while (!demo->quit) {
2818 demo_draw(demo);
2819 demo->curFrame++;
2820
2821 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) {
2822 demo->quit = true;
2823 }
2824 }
2825}
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002826#endif
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06002827
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -06002828/*
2829 * Return 1 (true) if all layer names specified in check_names
2830 * can be found in given layer properties.
2831 */
Dave Houlton5fa47912018-02-16 11:02:26 -07002832static VkBool32 demo_check_layers(uint32_t check_count, char **check_names, uint32_t layer_count, VkLayerProperties *layers) {
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -06002833 for (uint32_t i = 0; i < check_count; i++) {
Courtney Goeltzenleuchterc88ce512015-07-09 11:44:38 -06002834 VkBool32 found = 0;
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -06002835 for (uint32_t j = 0; j < layer_count; j++) {
2836 if (!strcmp(check_names[i], layers[j].layerName)) {
2837 found = 1;
Dustin Graves7c287352016-01-27 13:48:06 -07002838 break;
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -06002839 }
2840 }
2841 if (!found) {
2842 fprintf(stderr, "Cannot find layer: %s\n", check_names[i]);
2843 return 0;
2844 }
2845 }
2846 return 1;
2847}
2848
Karl Schultze4dc75c2016-02-02 15:37:51 -07002849static void demo_init_vk(struct demo *demo) {
Tobin Ehlis99239dc2015-04-16 18:04:57 -06002850 VkResult err;
Courtney Goeltzenleuchter922a0fa2015-06-10 17:39:03 -06002851 uint32_t instance_extension_count = 0;
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06002852 uint32_t instance_layer_count = 0;
Karl Schultz5b423ea2016-06-20 19:08:43 -06002853 uint32_t validation_layer_count = 0;
Karl Schultz7c50ad62016-04-01 12:07:03 -06002854 char **instance_validation_layers = NULL;
2855 demo->enabled_extension_count = 0;
2856 demo->enabled_layer_count = 0;
Jeremy Kniager602e4182018-01-19 10:52:34 -07002857 demo->is_minimized = false;
2858 demo->cmd_pool = VK_NULL_HANDLE;
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06002859
Dave Houlton5fa47912018-02-16 11:02:26 -07002860 char *instance_validation_layers_alt1[] = {"VK_LAYER_LUNARG_standard_validation"};
Karl Schultz7c50ad62016-04-01 12:07:03 -06002861
Dave Houlton5fa47912018-02-16 11:02:26 -07002862 char *instance_validation_layers_alt2[] = {"VK_LAYER_GOOGLE_threading", "VK_LAYER_LUNARG_parameter_validation",
2863 "VK_LAYER_LUNARG_object_tracker", "VK_LAYER_LUNARG_core_validation",
2864 "VK_LAYER_GOOGLE_unique_objects"};
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -06002865
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06002866 /* Look for validation layers */
Courtney Goeltzenleuchterc88ce512015-07-09 11:44:38 -06002867 VkBool32 validation_found = 0;
Karl Schultz7c50ad62016-04-01 12:07:03 -06002868 if (demo->validate) {
Karl Schultz7c50ad62016-04-01 12:07:03 -06002869 err = vkEnumerateInstanceLayerProperties(&instance_layer_count, NULL);
Dustin Graves7c287352016-01-27 13:48:06 -07002870 assert(!err);
Courtney Goeltzenleuchter886f76c2015-07-06 17:46:11 -06002871
Karl Schultz7c50ad62016-04-01 12:07:03 -06002872 instance_validation_layers = instance_validation_layers_alt1;
2873 if (instance_layer_count > 0) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002874 VkLayerProperties *instance_layers = malloc(sizeof(VkLayerProperties) * instance_layer_count);
2875 err = vkEnumerateInstanceLayerProperties(&instance_layer_count, instance_layers);
Karl Schultz7c50ad62016-04-01 12:07:03 -06002876 assert(!err);
Dustin Graves7c287352016-01-27 13:48:06 -07002877
Dave Houlton5fa47912018-02-16 11:02:26 -07002878 validation_found = demo_check_layers(ARRAY_SIZE(instance_validation_layers_alt1), instance_validation_layers,
2879 instance_layer_count, instance_layers);
Karl Schultz7c50ad62016-04-01 12:07:03 -06002880 if (validation_found) {
2881 demo->enabled_layer_count = ARRAY_SIZE(instance_validation_layers_alt1);
Karl Schultz5b423ea2016-06-20 19:08:43 -06002882 demo->enabled_layers[0] = "VK_LAYER_LUNARG_standard_validation";
2883 validation_layer_count = 1;
Karl Schultz7c50ad62016-04-01 12:07:03 -06002884 } else {
2885 // use alternative set of validation layers
2886 instance_validation_layers = instance_validation_layers_alt2;
2887 demo->enabled_layer_count = ARRAY_SIZE(instance_validation_layers_alt2);
Dave Houlton5fa47912018-02-16 11:02:26 -07002888 validation_found = demo_check_layers(ARRAY_SIZE(instance_validation_layers_alt2), instance_validation_layers,
2889 instance_layer_count, instance_layers);
2890 validation_layer_count = ARRAY_SIZE(instance_validation_layers_alt2);
Karl Schultz5b423ea2016-06-20 19:08:43 -06002891 for (uint32_t i = 0; i < validation_layer_count; i++) {
2892 demo->enabled_layers[i] = instance_validation_layers[i];
Karl Schultz7c50ad62016-04-01 12:07:03 -06002893 }
2894 }
2895 free(instance_layers);
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06002896 }
Dustin Graves7c287352016-01-27 13:48:06 -07002897
Karl Schultz7c50ad62016-04-01 12:07:03 -06002898 if (!validation_found) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002899 ERR_EXIT(
2900 "vkEnumerateInstanceLayerProperties failed to find required validation layer.\n\n"
2901 "Please look at the Getting Started guide for additional information.\n",
2902 "vkCreateInstance Failure");
Karl Schultz7c50ad62016-04-01 12:07:03 -06002903 }
Dustin Graves7c287352016-01-27 13:48:06 -07002904 }
2905
2906 /* Look for instance extensions */
2907 VkBool32 surfaceExtFound = 0;
2908 VkBool32 platformSurfaceExtFound = 0;
Karl Schultz7c50ad62016-04-01 12:07:03 -06002909 memset(demo->extension_names, 0, sizeof(demo->extension_names));
Dustin Graves7c287352016-01-27 13:48:06 -07002910
Dave Houlton5fa47912018-02-16 11:02:26 -07002911 err = vkEnumerateInstanceExtensionProperties(NULL, &instance_extension_count, NULL);
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06002912 assert(!err);
2913
Dustin Graves7c287352016-01-27 13:48:06 -07002914 if (instance_extension_count > 0) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002915 VkExtensionProperties *instance_extensions = malloc(sizeof(VkExtensionProperties) * instance_extension_count);
2916 err = vkEnumerateInstanceExtensionProperties(NULL, &instance_extension_count, instance_extensions);
Dustin Graves7c287352016-01-27 13:48:06 -07002917 assert(!err);
2918 for (uint32_t i = 0; i < instance_extension_count; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002919 if (!strcmp(VK_KHR_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Dustin Graves7c287352016-01-27 13:48:06 -07002920 surfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002921 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_SURFACE_EXTENSION_NAME;
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06002922 }
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002923#if defined(VK_USE_PLATFORM_WIN32_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002924 if (!strcmp(VK_KHR_WIN32_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Dustin Graves7c287352016-01-27 13:48:06 -07002925 platformSurfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002926 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_WIN32_SURFACE_EXTENSION_NAME;
Dustin Graves7c287352016-01-27 13:48:06 -07002927 }
Tony Barbour153cb062016-12-07 13:43:36 -07002928#elif defined(VK_USE_PLATFORM_XLIB_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002929 if (!strcmp(VK_KHR_XLIB_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Tony Barbour2593b182016-04-19 10:57:58 -06002930 platformSurfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002931 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_XLIB_SURFACE_EXTENSION_NAME;
Tony Barbour2593b182016-04-19 10:57:58 -06002932 }
Tony Barbour153cb062016-12-07 13:43:36 -07002933#elif defined(VK_USE_PLATFORM_XCB_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002934 if (!strcmp(VK_KHR_XCB_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Dustin Graves7c287352016-01-27 13:48:06 -07002935 platformSurfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002936 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_XCB_SURFACE_EXTENSION_NAME;
Dustin Graves7c287352016-01-27 13:48:06 -07002937 }
Tony Barbour153cb062016-12-07 13:43:36 -07002938#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002939 if (!strcmp(VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002940 platformSurfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002941 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME;
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09002942 }
Tony Barbourefd0c5a2016-12-07 14:45:12 -07002943#elif defined(VK_USE_PLATFORM_MIR_KHR)
Damien Leone600c3052017-01-31 10:26:07 -07002944#elif defined(VK_USE_PLATFORM_DISPLAY_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002945 if (!strcmp(VK_KHR_DISPLAY_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Damien Leone600c3052017-01-31 10:26:07 -07002946 platformSurfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002947 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_DISPLAY_EXTENSION_NAME;
Damien Leone600c3052017-01-31 10:26:07 -07002948 }
Tony Barbour153cb062016-12-07 13:43:36 -07002949#elif defined(VK_USE_PLATFORM_ANDROID_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002950 if (!strcmp(VK_KHR_ANDROID_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002951 platformSurfaceExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07002952 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_ANDROID_SURFACE_EXTENSION_NAME;
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002953 }
Bill Hollingsf4352142017-02-14 22:58:56 -05002954#elif defined(VK_USE_PLATFORM_IOS_MVK)
2955 if (!strcmp(VK_MVK_IOS_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
2956 platformSurfaceExtFound = 1;
2957 demo->extension_names[demo->enabled_extension_count++] = VK_MVK_IOS_SURFACE_EXTENSION_NAME;
2958 }
2959#elif defined(VK_USE_PLATFORM_MACOS_MVK)
2960 if (!strcmp(VK_MVK_MACOS_SURFACE_EXTENSION_NAME, instance_extensions[i].extensionName)) {
2961 platformSurfaceExtFound = 1;
2962 demo->extension_names[demo->enabled_extension_count++] = VK_MVK_MACOS_SURFACE_EXTENSION_NAME;
2963 }
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002964#endif
Mark Young66510e52017-11-10 10:05:14 -07002965 if (!strcmp(VK_EXT_DEBUG_UTILS_EXTENSION_NAME, instance_extensions[i].extensionName)) {
2966 if (demo->validate) {
2967 demo->extension_names[demo->enabled_extension_count++] = VK_EXT_DEBUG_UTILS_EXTENSION_NAME;
2968 }
2969 }
Karl Schultz7c50ad62016-04-01 12:07:03 -06002970 assert(demo->enabled_extension_count < 64);
Courtney Goeltzenleuchter922a0fa2015-06-10 17:39:03 -06002971 }
Dustin Graves7c287352016-01-27 13:48:06 -07002972
2973 free(instance_extensions);
Tobin Ehlis99239dc2015-04-16 18:04:57 -06002974 }
Dustin Graves7c287352016-01-27 13:48:06 -07002975
Ian Elliottd3f7dcc2015-11-20 13:08:34 -07002976 if (!surfaceExtFound) {
Dave Houlton5fa47912018-02-16 11:02:26 -07002977 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_SURFACE_EXTENSION_NAME
2978 " extension.\n\n"
2979 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
2980 "Please look at the Getting Started guide for additional information.\n",
Ian Elliott65152912015-04-28 13:22:33 -06002981 "vkCreateInstance Failure");
2982 }
Ian Elliottd3f7dcc2015-11-20 13:08:34 -07002983 if (!platformSurfaceExtFound) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05002984#if defined(VK_USE_PLATFORM_WIN32_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07002985 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_WIN32_SURFACE_EXTENSION_NAME
2986 " extension.\n\n"
2987 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
2988 "Please look at the Getting Started guide for additional information.\n",
Ian Elliottd3f7dcc2015-11-20 13:08:34 -07002989 "vkCreateInstance Failure");
Bill Hollingsf4352142017-02-14 22:58:56 -05002990#elif defined(VK_USE_PLATFORM_IOS_MVK)
Dave Houlton5fa47912018-02-16 11:02:26 -07002991 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_MVK_IOS_SURFACE_EXTENSION_NAME
2992 " extension.\n\n"
2993 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
2994 "Please look at the Getting Started guide for additional information.\n",
Tony Barbourc65cd752017-03-13 15:29:35 -06002995 "vkCreateInstance Failure");
Bill Hollingsf4352142017-02-14 22:58:56 -05002996#elif defined(VK_USE_PLATFORM_MACOS_MVK)
Dave Houlton5fa47912018-02-16 11:02:26 -07002997 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_MVK_MACOS_SURFACE_EXTENSION_NAME
2998 " extension.\n\n"
2999 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3000 "Please look at the Getting Started guide for additional information.\n",
Tony Barbourc65cd752017-03-13 15:29:35 -06003001 "vkCreateInstance Failure");
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003002#elif defined(VK_USE_PLATFORM_XCB_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07003003 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_XCB_SURFACE_EXTENSION_NAME
3004 " extension.\n\n"
3005 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3006 "Please look at the Getting Started guide for additional information.\n",
Mark Lobodzinski6f7a6032015-11-24 12:04:15 -07003007 "vkCreateInstance Failure");
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003008#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07003009 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME
3010 " extension.\n\n"
3011 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3012 "Please look at the Getting Started guide for additional information.\n",
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003013 "vkCreateInstance Failure");
Tony Barbourefd0c5a2016-12-07 14:45:12 -07003014#elif defined(VK_USE_PLATFORM_MIR_KHR)
Damien Leone600c3052017-01-31 10:26:07 -07003015#elif defined(VK_USE_PLATFORM_DISPLAY_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07003016 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_DISPLAY_EXTENSION_NAME
3017 " extension.\n\n"
3018 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3019 "Please look at the Getting Started guide for additional information.\n",
Damien Leone600c3052017-01-31 10:26:07 -07003020 "vkCreateInstance Failure");
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003021#elif defined(VK_USE_PLATFORM_ANDROID_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07003022 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_ANDROID_SURFACE_EXTENSION_NAME
3023 " extension.\n\n"
3024 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3025 "Please look at the Getting Started guide for additional information.\n",
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003026 "vkCreateInstance Failure");
Tony Barbour153cb062016-12-07 13:43:36 -07003027#elif defined(VK_USE_PLATFORM_XLIB_KHR)
Dave Houlton5fa47912018-02-16 11:02:26 -07003028 ERR_EXIT("vkEnumerateInstanceExtensionProperties failed to find the " VK_KHR_XLIB_SURFACE_EXTENSION_NAME
3029 " extension.\n\n"
3030 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3031 "Please look at the Getting Started guide for additional information.\n",
Tony Barbour2593b182016-04-19 10:57:58 -06003032 "vkCreateInstance Failure");
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003033#endif
Tony Barbour153cb062016-12-07 13:43:36 -07003034 }
Courtney Goeltzenleuchter78351a62015-04-10 08:34:15 -06003035 const VkApplicationInfo app = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06003036 .sType = VK_STRUCTURE_TYPE_APPLICATION_INFO,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003037 .pNext = NULL,
Chia-I Wua8fe78a2015-10-27 18:04:07 +08003038 .pApplicationName = APP_SHORT_NAME,
3039 .applicationVersion = 0,
Ian Elliott44e33f72015-04-28 10:52:52 -06003040 .pEngineName = APP_SHORT_NAME,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003041 .engineVersion = 0,
Jon Ashburn7f4bc2c2016-03-22 13:57:46 -06003042 .apiVersion = VK_API_VERSION_1_0,
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003043 };
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003044 VkInstanceCreateInfo inst_info = {
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06003045 .sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO,
Jon Ashburnab46b362015-04-04 14:52:07 -06003046 .pNext = NULL,
Chia-I Wua8fe78a2015-10-27 18:04:07 +08003047 .pApplicationInfo = &app,
Karl Schultz7c50ad62016-04-01 12:07:03 -06003048 .enabledLayerCount = demo->enabled_layer_count,
3049 .ppEnabledLayerNames = (const char *const *)instance_validation_layers,
3050 .enabledExtensionCount = demo->enabled_extension_count,
3051 .ppEnabledExtensionNames = (const char *const *)demo->extension_names,
Jon Ashburnab46b362015-04-04 14:52:07 -06003052 };
Karl Schultzcd9887d2016-03-25 14:25:16 -06003053
3054 /*
3055 * This is info for a temp callback to use during CreateInstance.
3056 * After the instance is created, we use the instance-based
3057 * function to register the final callback.
3058 */
Mark Young66510e52017-11-10 10:05:14 -07003059 VkDebugUtilsMessengerCreateInfoEXT dbg_messenger_create_info;
Ian Elliott5959bbd2016-03-25 09:07:19 -06003060 if (demo->validate) {
Mark Young66510e52017-11-10 10:05:14 -07003061 // VK_EXT_debug_utils style
3062 dbg_messenger_create_info.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT;
3063 dbg_messenger_create_info.pNext = NULL;
3064 dbg_messenger_create_info.flags = 0;
3065 dbg_messenger_create_info.messageSeverity =
3066 VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT | VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT;
3067 dbg_messenger_create_info.messageType = VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT |
3068 VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT |
3069 VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT;
3070 dbg_messenger_create_info.pfnUserCallback = debug_messenger_callback;
3071 dbg_messenger_create_info.pUserData = demo;
3072 inst_info.pNext = &dbg_messenger_create_info;
Ian Elliott5959bbd2016-03-25 09:07:19 -06003073 }
Ian Elliott097d9f32015-04-28 11:35:02 -06003074
Mark Lobodzinskic4fffc72015-01-29 08:55:56 -06003075 uint32_t gpu_count;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003076
Chia-I Wu63636062015-10-26 21:10:41 +08003077 err = vkCreateInstance(&inst_info, NULL, &demo->inst);
Ian Elliott07264132015-04-28 11:35:02 -06003078 if (err == VK_ERROR_INCOMPATIBLE_DRIVER) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003079 ERR_EXIT(
3080 "Cannot find a compatible Vulkan installable client driver (ICD).\n\n"
3081 "Please look at the Getting Started guide for additional information.\n",
3082 "vkCreateInstance Failure");
Courtney Goeltzenleuchter1e47e4b2015-09-14 18:01:17 -06003083 } else if (err == VK_ERROR_EXTENSION_NOT_PRESENT) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003084 ERR_EXIT(
3085 "Cannot find a specified extension library.\n"
3086 "Make sure your layers path is set appropriately.\n",
3087 "vkCreateInstance Failure");
Ian Elliott07264132015-04-28 11:35:02 -06003088 } else if (err) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003089 ERR_EXIT(
3090 "vkCreateInstance failed.\n\n"
3091 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3092 "Please look at the Getting Started guide for additional information.\n",
3093 "vkCreateInstance Failure");
Ian Elliott3979e282015-04-03 15:24:55 -06003094 }
Jon Ashburnab46b362015-04-04 14:52:07 -06003095
Tobin Ehlis8a724d82015-09-07 15:16:39 -06003096 /* Make initial call to query gpu_count, then second call for gpu info*/
3097 err = vkEnumeratePhysicalDevices(demo->inst, &gpu_count, NULL);
Petr Kraus2f1dbdb2018-04-14 14:45:17 +02003098 assert(!err);
Dustin Graves7c287352016-01-27 13:48:06 -07003099
3100 if (gpu_count > 0) {
3101 VkPhysicalDevice *physical_devices = malloc(sizeof(VkPhysicalDevice) * gpu_count);
3102 err = vkEnumeratePhysicalDevices(demo->inst, &gpu_count, physical_devices);
3103 assert(!err);
3104 /* For cube demo we just grab the first physical device */
3105 demo->gpu = physical_devices[0];
3106 free(physical_devices);
3107 } else {
Dave Houlton5fa47912018-02-16 11:02:26 -07003108 ERR_EXIT(
3109 "vkEnumeratePhysicalDevices reported zero accessible devices.\n\n"
3110 "Do you have a compatible Vulkan installable client driver (ICD) installed?\n"
3111 "Please look at the Getting Started guide for additional information.\n",
3112 "vkEnumeratePhysicalDevices Failure");
Dustin Graves7c287352016-01-27 13:48:06 -07003113 }
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003114
Dustin Graves7c287352016-01-27 13:48:06 -07003115 /* Look for device extensions */
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06003116 uint32_t device_extension_count = 0;
Dustin Graves7c287352016-01-27 13:48:06 -07003117 VkBool32 swapchainExtFound = 0;
3118 demo->enabled_extension_count = 0;
Karl Schultz7c50ad62016-04-01 12:07:03 -06003119 memset(demo->extension_names, 0, sizeof(demo->extension_names));
Dustin Graves7c287352016-01-27 13:48:06 -07003120
Dave Houlton5fa47912018-02-16 11:02:26 -07003121 err = vkEnumerateDeviceExtensionProperties(demo->gpu, NULL, &device_extension_count, NULL);
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06003122 assert(!err);
3123
Dustin Graves7c287352016-01-27 13:48:06 -07003124 if (device_extension_count > 0) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003125 VkExtensionProperties *device_extensions = malloc(sizeof(VkExtensionProperties) * device_extension_count);
3126 err = vkEnumerateDeviceExtensionProperties(demo->gpu, NULL, &device_extension_count, device_extensions);
Dustin Graves7c287352016-01-27 13:48:06 -07003127 assert(!err);
Ian Elliottaaae5352015-07-06 14:27:58 -06003128
Dustin Graves7c287352016-01-27 13:48:06 -07003129 for (uint32_t i = 0; i < device_extension_count; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003130 if (!strcmp(VK_KHR_SWAPCHAIN_EXTENSION_NAME, device_extensions[i].extensionName)) {
Dustin Graves7c287352016-01-27 13:48:06 -07003131 swapchainExtFound = 1;
Dave Houlton5fa47912018-02-16 11:02:26 -07003132 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_SWAPCHAIN_EXTENSION_NAME;
Dustin Graves7c287352016-01-27 13:48:06 -07003133 }
3134 assert(demo->enabled_extension_count < 64);
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06003135 }
Dustin Graves7c287352016-01-27 13:48:06 -07003136
Ian Elliott53622a72017-03-28 11:06:33 -06003137 if (demo->VK_KHR_incremental_present_enabled) {
3138 // Even though the user "enabled" the extension via the command
3139 // line, we must make sure that it's enumerated for use with the
3140 // device. Therefore, disable it here, and re-enable it again if
3141 // enumerated.
3142 demo->VK_KHR_incremental_present_enabled = false;
3143 for (uint32_t i = 0; i < device_extension_count; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003144 if (!strcmp(VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME, device_extensions[i].extensionName)) {
3145 demo->extension_names[demo->enabled_extension_count++] = VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME;
Ian Elliott53622a72017-03-28 11:06:33 -06003146 demo->VK_KHR_incremental_present_enabled = true;
3147 DbgMsg("VK_KHR_incremental_present extension enabled\n");
3148 }
3149 assert(demo->enabled_extension_count < 64);
3150 }
3151 if (!demo->VK_KHR_incremental_present_enabled) {
3152 DbgMsg("VK_KHR_incremental_present extension NOT AVAILABLE\n");
3153 }
3154 }
3155
Ian Elliottd940ca22017-03-22 08:31:27 -06003156 if (demo->VK_GOOGLE_display_timing_enabled) {
3157 // Even though the user "enabled" the extension via the command
3158 // line, we must make sure that it's enumerated for use with the
3159 // device. Therefore, disable it here, and re-enable it again if
3160 // enumerated.
3161 demo->VK_GOOGLE_display_timing_enabled = false;
3162 for (uint32_t i = 0; i < device_extension_count; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003163 if (!strcmp(VK_GOOGLE_DISPLAY_TIMING_EXTENSION_NAME, device_extensions[i].extensionName)) {
3164 demo->extension_names[demo->enabled_extension_count++] = VK_GOOGLE_DISPLAY_TIMING_EXTENSION_NAME;
Ian Elliottd940ca22017-03-22 08:31:27 -06003165 demo->VK_GOOGLE_display_timing_enabled = true;
Ian Elliott0c7b3c92017-03-27 14:38:52 -06003166 DbgMsg("VK_GOOGLE_display_timing extension enabled\n");
Ian Elliottd940ca22017-03-22 08:31:27 -06003167 }
3168 assert(demo->enabled_extension_count < 64);
3169 }
3170 if (!demo->VK_GOOGLE_display_timing_enabled) {
Ian Elliott0c7b3c92017-03-27 14:38:52 -06003171 DbgMsg("VK_GOOGLE_display_timing extension NOT AVAILABLE\n");
Ian Elliottd940ca22017-03-22 08:31:27 -06003172 }
3173 }
3174
Dustin Graves7c287352016-01-27 13:48:06 -07003175 free(device_extensions);
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06003176 }
Dustin Graves7c287352016-01-27 13:48:06 -07003177
Tony Barbourcc69f452015-10-08 13:59:42 -06003178 if (!swapchainExtFound) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003179 ERR_EXIT("vkEnumerateDeviceExtensionProperties failed to find the " VK_KHR_SWAPCHAIN_EXTENSION_NAME
3180 " extension.\n\nDo you have a compatible Vulkan installable client driver (ICD) installed?\n"
3181 "Please look at the Getting Started guide for additional information.\n",
Courtney Goeltzenleuchterbe103362015-06-29 15:39:26 -06003182 "vkCreateInstance Failure");
3183 }
3184
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003185 if (demo->validate) {
Mark Young66510e52017-11-10 10:05:14 -07003186 // Setup VK_EXT_debug_utils function pointers always (we use them for
3187 // debug labels and names).
3188 demo->CreateDebugUtilsMessengerEXT =
3189 (PFN_vkCreateDebugUtilsMessengerEXT)vkGetInstanceProcAddr(demo->inst, "vkCreateDebugUtilsMessengerEXT");
3190 demo->DestroyDebugUtilsMessengerEXT =
3191 (PFN_vkDestroyDebugUtilsMessengerEXT)vkGetInstanceProcAddr(demo->inst, "vkDestroyDebugUtilsMessengerEXT");
3192 demo->SubmitDebugUtilsMessageEXT =
3193 (PFN_vkSubmitDebugUtilsMessageEXT)vkGetInstanceProcAddr(demo->inst, "vkSubmitDebugUtilsMessageEXT");
3194 demo->CmdBeginDebugUtilsLabelEXT =
3195 (PFN_vkCmdBeginDebugUtilsLabelEXT)vkGetInstanceProcAddr(demo->inst, "vkCmdBeginDebugUtilsLabelEXT");
3196 demo->CmdEndDebugUtilsLabelEXT =
3197 (PFN_vkCmdEndDebugUtilsLabelEXT)vkGetInstanceProcAddr(demo->inst, "vkCmdEndDebugUtilsLabelEXT");
3198 demo->CmdInsertDebugUtilsLabelEXT =
3199 (PFN_vkCmdInsertDebugUtilsLabelEXT)vkGetInstanceProcAddr(demo->inst, "vkCmdInsertDebugUtilsLabelEXT");
3200 demo->SetDebugUtilsObjectNameEXT =
3201 (PFN_vkSetDebugUtilsObjectNameEXT)vkGetInstanceProcAddr(demo->inst, "vkSetDebugUtilsObjectNameEXT");
3202 if (NULL == demo->CreateDebugUtilsMessengerEXT || NULL == demo->DestroyDebugUtilsMessengerEXT ||
3203 NULL == demo->SubmitDebugUtilsMessageEXT || NULL == demo->CmdBeginDebugUtilsLabelEXT ||
3204 NULL == demo->CmdEndDebugUtilsLabelEXT || NULL == demo->CmdInsertDebugUtilsLabelEXT ||
3205 NULL == demo->SetDebugUtilsObjectNameEXT) {
3206 ERR_EXIT("GetProcAddr: Failed to init VK_EXT_debug_utils\n", "GetProcAddr: Failure");
Courtney Goeltzenleuchteraf1951c2015-12-01 14:11:38 -07003207 }
Jon Ashburn9549c8e2015-12-15 08:47:46 -07003208
Mark Young66510e52017-11-10 10:05:14 -07003209 err = demo->CreateDebugUtilsMessengerEXT(demo->inst, &dbg_messenger_create_info, NULL, &demo->dbg_messenger);
Courtney Goeltzenleuchter922a0fa2015-06-10 17:39:03 -06003210 switch (err) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003211 case VK_SUCCESS:
3212 break;
3213 case VK_ERROR_OUT_OF_HOST_MEMORY:
Mark Young66510e52017-11-10 10:05:14 -07003214 ERR_EXIT("CreateDebugUtilsMessengerEXT: out of host memory\n", "CreateDebugUtilsMessengerEXT Failure");
Dave Houlton5fa47912018-02-16 11:02:26 -07003215 break;
3216 default:
Mark Young66510e52017-11-10 10:05:14 -07003217 ERR_EXIT("CreateDebugUtilsMessengerEXT: unknown failure\n", "CreateDebugUtilsMessengerEXT Failure");
Dave Houlton5fa47912018-02-16 11:02:26 -07003218 break;
Courtney Goeltzenleuchter922a0fa2015-06-10 17:39:03 -06003219 }
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003220 }
Courtney Goeltzenleuchterbd5c1742015-10-20 16:40:38 -06003221 vkGetPhysicalDeviceProperties(demo->gpu, &demo->gpu_props);
Tobin Ehlis9626ba62015-09-22 13:52:37 -06003222
3223 /* Call with NULL data to get count */
Dave Houlton5fa47912018-02-16 11:02:26 -07003224 vkGetPhysicalDeviceQueueFamilyProperties(demo->gpu, &demo->queue_family_count, NULL);
Tony Barbourab2a0362016-09-06 11:40:12 -06003225 assert(demo->queue_family_count >= 1);
Tobin Ehlis9626ba62015-09-22 13:52:37 -06003226
Dave Houlton5fa47912018-02-16 11:02:26 -07003227 demo->queue_props = (VkQueueFamilyProperties *)malloc(demo->queue_family_count * sizeof(VkQueueFamilyProperties));
3228 vkGetPhysicalDeviceQueueFamilyProperties(demo->gpu, &demo->queue_family_count, demo->queue_props);
Tony Barbourab2a0362016-09-06 11:40:12 -06003229
Tobin Ehlisbf3020e2015-09-24 15:18:22 -06003230 // Query fine-grained feature support for this device.
Karl Schultze4dc75c2016-02-02 15:37:51 -07003231 // If app has specific feature requirements it should check supported
3232 // features based on this query
Tobin Ehlis8d03b7c2015-09-29 11:22:37 -06003233 VkPhysicalDeviceFeatures physDevFeatures;
Courtney Goeltzenleuchterbd5c1742015-10-20 16:40:38 -06003234 vkGetPhysicalDeviceFeatures(demo->gpu, &physDevFeatures);
Tobin Ehlisbf3020e2015-09-24 15:18:22 -06003235
Tony Barbourda2bad52016-01-22 14:36:40 -07003236 GET_INSTANCE_PROC_ADDR(demo->inst, GetPhysicalDeviceSurfaceSupportKHR);
3237 GET_INSTANCE_PROC_ADDR(demo->inst, GetPhysicalDeviceSurfaceCapabilitiesKHR);
3238 GET_INSTANCE_PROC_ADDR(demo->inst, GetPhysicalDeviceSurfaceFormatsKHR);
3239 GET_INSTANCE_PROC_ADDR(demo->inst, GetPhysicalDeviceSurfacePresentModesKHR);
3240 GET_INSTANCE_PROC_ADDR(demo->inst, GetSwapchainImagesKHR);
3241}
3242
Karl Schultze4dc75c2016-02-02 15:37:51 -07003243static void demo_create_device(struct demo *demo) {
Tony Barbourda2bad52016-01-22 14:36:40 -07003244 VkResult U_ASSERT_ONLY err;
Karl Schultze4dc75c2016-02-02 15:37:51 -07003245 float queue_priorities[1] = {0.0};
Tony Barbour22e06272016-09-07 16:07:56 -06003246 VkDeviceQueueCreateInfo queues[2];
3247 queues[0].sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
3248 queues[0].pNext = NULL;
3249 queues[0].queueFamilyIndex = demo->graphics_queue_family_index;
3250 queues[0].queueCount = 1;
3251 queues[0].pQueuePriorities = queue_priorities;
3252 queues[0].flags = 0;
Tobin Ehlis9626ba62015-09-22 13:52:37 -06003253
3254 VkDeviceCreateInfo device = {
3255 .sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO,
3256 .pNext = NULL,
Chia-I Wu8b497442015-11-06 06:42:02 +08003257 .queueCreateInfoCount = 1,
Tony Barbour22e06272016-09-07 16:07:56 -06003258 .pQueueCreateInfos = queues,
Karl Schultz5b423ea2016-06-20 19:08:43 -06003259 .enabledLayerCount = 0,
3260 .ppEnabledLayerNames = NULL,
Tony Barbourda2bad52016-01-22 14:36:40 -07003261 .enabledExtensionCount = demo->enabled_extension_count,
Karl Schultze4dc75c2016-02-02 15:37:51 -07003262 .ppEnabledExtensionNames = (const char *const *)demo->extension_names,
Dave Houlton5fa47912018-02-16 11:02:26 -07003263 .pEnabledFeatures = NULL, // If specific features are required, pass them in here
Tobin Ehlis9626ba62015-09-22 13:52:37 -06003264 };
Tony Barbour22e06272016-09-07 16:07:56 -06003265 if (demo->separate_present_queue) {
3266 queues[1].sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
3267 queues[1].pNext = NULL;
3268 queues[1].queueFamilyIndex = demo->present_queue_family_index;
3269 queues[1].queueCount = 1;
3270 queues[1].pQueuePriorities = queue_priorities;
3271 queues[1].flags = 0;
3272 device.queueCreateInfoCount = 2;
3273 }
Chia-I Wu63636062015-10-26 21:10:41 +08003274 err = vkCreateDevice(demo->gpu, &device, NULL, &demo->device);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003275 assert(!err);
Courtney Goeltzenleuchter3a35c822015-07-15 17:45:38 -06003276}
3277
Karl Schultze4dc75c2016-02-02 15:37:51 -07003278static void demo_init_vk_swapchain(struct demo *demo) {
Courtney Goeltzenleuchterd3cdaaf2015-12-17 09:53:29 -07003279 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchtered667a52015-03-05 18:09:39 -07003280
Karl Schultze4dc75c2016-02-02 15:37:51 -07003281// Create a WSI surface for the window:
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003282#if defined(VK_USE_PLATFORM_WIN32_KHR)
Ian Elliotta7a731c2015-12-11 15:52:12 -07003283 VkWin32SurfaceCreateInfoKHR createInfo;
3284 createInfo.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR;
3285 createInfo.pNext = NULL;
3286 createInfo.flags = 0;
Jon Ashburnb90f50d2015-12-24 17:08:01 -07003287 createInfo.hinstance = demo->connection;
3288 createInfo.hwnd = demo->window;
Ian Elliotta7a731c2015-12-11 15:52:12 -07003289
Dave Houlton5fa47912018-02-16 11:02:26 -07003290 err = vkCreateWin32SurfaceKHR(demo->inst, &createInfo, NULL, &demo->surface);
Tony Barbour153cb062016-12-07 13:43:36 -07003291#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003292 VkWaylandSurfaceCreateInfoKHR createInfo;
3293 createInfo.sType = VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR;
3294 createInfo.pNext = NULL;
3295 createInfo.flags = 0;
3296 createInfo.display = demo->display;
3297 createInfo.surface = demo->window;
3298
Dave Houlton5fa47912018-02-16 11:02:26 -07003299 err = vkCreateWaylandSurfaceKHR(demo->inst, &createInfo, NULL, &demo->surface);
Tony Barbourefd0c5a2016-12-07 14:45:12 -07003300#elif defined(VK_USE_PLATFORM_MIR_KHR)
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003301#elif defined(VK_USE_PLATFORM_ANDROID_KHR)
3302 VkAndroidSurfaceCreateInfoKHR createInfo;
3303 createInfo.sType = VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR;
3304 createInfo.pNext = NULL;
3305 createInfo.flags = 0;
Mike Schuchardt837d5162018-03-08 12:57:02 -07003306 createInfo.window = (struct ANativeWindow *)(demo->window);
Ian Elliottb08e0d92015-11-20 11:55:46 -07003307
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003308 err = vkCreateAndroidSurfaceKHR(demo->inst, &createInfo, NULL, &demo->surface);
Tony Barbour153cb062016-12-07 13:43:36 -07003309#elif defined(VK_USE_PLATFORM_XLIB_KHR)
3310 VkXlibSurfaceCreateInfoKHR createInfo;
3311 createInfo.sType = VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR;
3312 createInfo.pNext = NULL;
3313 createInfo.flags = 0;
3314 createInfo.dpy = demo->display;
3315 createInfo.window = demo->xlib_window;
Ian Elliotta7a731c2015-12-11 15:52:12 -07003316
Dave Houlton5fa47912018-02-16 11:02:26 -07003317 err = vkCreateXlibSurfaceKHR(demo->inst, &createInfo, NULL, &demo->surface);
Tony Barbour153cb062016-12-07 13:43:36 -07003318#elif defined(VK_USE_PLATFORM_XCB_KHR)
3319 VkXcbSurfaceCreateInfoKHR createInfo;
3320 createInfo.sType = VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR;
3321 createInfo.pNext = NULL;
3322 createInfo.flags = 0;
3323 createInfo.connection = demo->connection;
3324 createInfo.window = demo->xcb_window;
Tony Barbour2593b182016-04-19 10:57:58 -06003325
Tony Barbour153cb062016-12-07 13:43:36 -07003326 err = vkCreateXcbSurfaceKHR(demo->inst, &createInfo, NULL, &demo->surface);
Damien Leone600c3052017-01-31 10:26:07 -07003327#elif defined(VK_USE_PLATFORM_DISPLAY_KHR)
3328 err = demo_create_display_surface(demo);
Bill Hollingsf4352142017-02-14 22:58:56 -05003329#elif defined(VK_USE_PLATFORM_IOS_MVK)
3330 VkIOSSurfaceCreateInfoMVK surface;
3331 surface.sType = VK_STRUCTURE_TYPE_IOS_SURFACE_CREATE_INFO_MVK;
3332 surface.pNext = NULL;
3333 surface.flags = 0;
3334 surface.pView = demo->window;
3335
3336 err = vkCreateIOSSurfaceMVK(demo->inst, &surface, NULL, &demo->surface);
3337#elif defined(VK_USE_PLATFORM_MACOS_MVK)
3338 VkMacOSSurfaceCreateInfoMVK surface;
3339 surface.sType = VK_STRUCTURE_TYPE_MACOS_SURFACE_CREATE_INFO_MVK;
3340 surface.pNext = NULL;
3341 surface.flags = 0;
3342 surface.pView = demo->window;
3343
3344 err = vkCreateMacOSSurfaceMVK(demo->inst, &surface, NULL, &demo->surface);
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003345#endif
Tony Barbour2593b182016-04-19 10:57:58 -06003346 assert(!err);
Ian Elliottaaae5352015-07-06 14:27:58 -06003347
Tony Barbourcc69f452015-10-08 13:59:42 -06003348 // Iterate over each queue to learn whether it supports presenting:
Dave Houlton5fa47912018-02-16 11:02:26 -07003349 VkBool32 *supportsPresent = (VkBool32 *)malloc(demo->queue_family_count * sizeof(VkBool32));
Karl Schultza2615462017-01-20 13:19:20 -07003350 for (uint32_t i = 0; i < demo->queue_family_count; i++) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003351 demo->fpGetPhysicalDeviceSurfaceSupportKHR(demo->gpu, i, demo->surface, &supportsPresent[i]);
Courtney Goeltzenleuchtered667a52015-03-05 18:09:39 -07003352 }
Ian Elliottaaae5352015-07-06 14:27:58 -06003353
3354 // Search for a graphics and a present queue in the array of queue
3355 // families, try to find one that supports both
Tony Barbourab2a0362016-09-06 11:40:12 -06003356 uint32_t graphicsQueueFamilyIndex = UINT32_MAX;
3357 uint32_t presentQueueFamilyIndex = UINT32_MAX;
Karl Schultza2615462017-01-20 13:19:20 -07003358 for (uint32_t i = 0; i < demo->queue_family_count; i++) {
Tony Barbourab2a0362016-09-06 11:40:12 -06003359 if ((demo->queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) != 0) {
3360 if (graphicsQueueFamilyIndex == UINT32_MAX) {
3361 graphicsQueueFamilyIndex = i;
3362 }
Karl Schultze4dc75c2016-02-02 15:37:51 -07003363
Tony Barbourab2a0362016-09-06 11:40:12 -06003364 if (supportsPresent[i] == VK_TRUE) {
3365 graphicsQueueFamilyIndex = i;
3366 presentQueueFamilyIndex = i;
3367 break;
3368 }
3369 }
3370 }
3371
3372 if (presentQueueFamilyIndex == UINT32_MAX) {
3373 // If didn't find a queue that supports both graphics and present, then
3374 // find a separate present queue.
Karl Schultza2615462017-01-20 13:19:20 -07003375 for (uint32_t i = 0; i < demo->queue_family_count; ++i) {
Tony Barbourab2a0362016-09-06 11:40:12 -06003376 if (supportsPresent[i] == VK_TRUE) {
3377 presentQueueFamilyIndex = i;
3378 break;
3379 }
Ian Elliottaaae5352015-07-06 14:27:58 -06003380 }
3381 }
Ian Elliottaaae5352015-07-06 14:27:58 -06003382
3383 // Generate error if could not find both a graphics and a present queue
Dave Houlton5fa47912018-02-16 11:02:26 -07003384 if (graphicsQueueFamilyIndex == UINT32_MAX || presentQueueFamilyIndex == UINT32_MAX) {
3385 ERR_EXIT("Could not find both graphics and present queues\n", "Swapchain Initialization Failure");
Ian Elliottaaae5352015-07-06 14:27:58 -06003386 }
3387
Tony Barbourab2a0362016-09-06 11:40:12 -06003388 demo->graphics_queue_family_index = graphicsQueueFamilyIndex;
3389 demo->present_queue_family_index = presentQueueFamilyIndex;
Dave Houlton5fa47912018-02-16 11:02:26 -07003390 demo->separate_present_queue = (demo->graphics_queue_family_index != demo->present_queue_family_index);
Tony Barbourab2a0362016-09-06 11:40:12 -06003391 free(supportsPresent);
Courtney Goeltzenleuchtered667a52015-03-05 18:09:39 -07003392
Tony Barbourda2bad52016-01-22 14:36:40 -07003393 demo_create_device(demo);
3394
3395 GET_DEVICE_PROC_ADDR(demo->device, CreateSwapchainKHR);
3396 GET_DEVICE_PROC_ADDR(demo->device, DestroySwapchainKHR);
3397 GET_DEVICE_PROC_ADDR(demo->device, GetSwapchainImagesKHR);
3398 GET_DEVICE_PROC_ADDR(demo->device, AcquireNextImageKHR);
3399 GET_DEVICE_PROC_ADDR(demo->device, QueuePresentKHR);
Ian Elliottd940ca22017-03-22 08:31:27 -06003400 if (demo->VK_GOOGLE_display_timing_enabled) {
3401 GET_DEVICE_PROC_ADDR(demo->device, GetRefreshCycleDurationGOOGLE);
3402 GET_DEVICE_PROC_ADDR(demo->device, GetPastPresentationTimingGOOGLE);
3403 }
Tony Barbourda2bad52016-01-22 14:36:40 -07003404
Dave Houlton5fa47912018-02-16 11:02:26 -07003405 vkGetDeviceQueue(demo->device, demo->graphics_queue_family_index, 0, &demo->graphics_queue);
Tony Barboura2a67812016-07-18 13:21:06 -06003406
Tony Barbour22e06272016-09-07 16:07:56 -06003407 if (!demo->separate_present_queue) {
Tony Barboura2a67812016-07-18 13:21:06 -06003408 demo->present_queue = demo->graphics_queue;
3409 } else {
Dave Houlton5fa47912018-02-16 11:02:26 -07003410 vkGetDeviceQueue(demo->device, demo->present_queue_family_index, 0, &demo->present_queue);
Tony Barboura2a67812016-07-18 13:21:06 -06003411 }
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003412
Ian Elliottaaae5352015-07-06 14:27:58 -06003413 // Get the list of VkFormat's that are supported:
Ian Elliott8528eff2015-08-07 15:56:59 -06003414 uint32_t formatCount;
Dave Houlton5fa47912018-02-16 11:02:26 -07003415 err = demo->fpGetPhysicalDeviceSurfaceFormatsKHR(demo->gpu, demo->surface, &formatCount, NULL);
Ian Elliottaaae5352015-07-06 14:27:58 -06003416 assert(!err);
Dave Houlton5fa47912018-02-16 11:02:26 -07003417 VkSurfaceFormatKHR *surfFormats = (VkSurfaceFormatKHR *)malloc(formatCount * sizeof(VkSurfaceFormatKHR));
3418 err = demo->fpGetPhysicalDeviceSurfaceFormatsKHR(demo->gpu, demo->surface, &formatCount, surfFormats);
Ian Elliottaaae5352015-07-06 14:27:58 -06003419 assert(!err);
3420 // If the format list includes just one entry of VK_FORMAT_UNDEFINED,
3421 // the surface has no preferred format. Otherwise, at least one
3422 // supported format will be returned.
Karl Schultze4dc75c2016-02-02 15:37:51 -07003423 if (formatCount == 1 && surfFormats[0].format == VK_FORMAT_UNDEFINED) {
Ian Elliottaaae5352015-07-06 14:27:58 -06003424 demo->format = VK_FORMAT_B8G8R8A8_UNORM;
Karl Schultze4dc75c2016-02-02 15:37:51 -07003425 } else {
Ian Elliottaaae5352015-07-06 14:27:58 -06003426 assert(formatCount >= 1);
3427 demo->format = surfFormats[0].format;
3428 }
Ian Elliott8528eff2015-08-07 15:56:59 -06003429 demo->color_space = surfFormats[0].colorSpace;
Ian Elliotte4602cd2015-04-21 16:41:02 -06003430
David Pinedo2bb7c932015-06-18 17:03:14 -06003431 demo->quit = false;
3432 demo->curFrame = 0;
Mark Lobodzinskieadf9982015-07-02 16:49:40 -06003433
Tony Barbource7524e2016-07-28 12:01:45 -06003434 // Create semaphores to synchronize acquiring presentable buffers before
3435 // rendering and waiting for drawing to be complete before presenting
3436 VkSemaphoreCreateInfo semaphoreCreateInfo = {
3437 .sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO,
3438 .pNext = NULL,
3439 .flags = 0,
3440 };
Tony Barbource7524e2016-07-28 12:01:45 -06003441
Tony Barbour66a56c32016-09-21 13:10:56 -06003442 // Create fences that we can use to throttle if we get too far
3443 // ahead of the image presents
3444 VkFenceCreateInfo fence_ci = {
Dave Houlton5fa47912018-02-16 11:02:26 -07003445 .sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO, .pNext = NULL, .flags = VK_FENCE_CREATE_SIGNALED_BIT};
Tony Barbour66a56c32016-09-21 13:10:56 -06003446 for (uint32_t i = 0; i < FRAME_LAG; i++) {
Tony Barboura72d9492017-01-11 13:35:09 -07003447 err = vkCreateFence(demo->device, &fence_ci, NULL, &demo->fences[i]);
3448 assert(!err);
3449
Dave Houlton5fa47912018-02-16 11:02:26 -07003450 err = vkCreateSemaphore(demo->device, &semaphoreCreateInfo, NULL, &demo->image_acquired_semaphores[i]);
Tony Barbour22e06272016-09-07 16:07:56 -06003451 assert(!err);
Tony Barbour66a56c32016-09-21 13:10:56 -06003452
Dave Houlton5fa47912018-02-16 11:02:26 -07003453 err = vkCreateSemaphore(demo->device, &semaphoreCreateInfo, NULL, &demo->draw_complete_semaphores[i]);
Tony Barbour66a56c32016-09-21 13:10:56 -06003454 assert(!err);
3455
3456 if (demo->separate_present_queue) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003457 err = vkCreateSemaphore(demo->device, &semaphoreCreateInfo, NULL, &demo->image_ownership_semaphores[i]);
Tony Barbour66a56c32016-09-21 13:10:56 -06003458 assert(!err);
3459 }
Tony Barbour22e06272016-09-07 16:07:56 -06003460 }
Tony Barbour66a56c32016-09-21 13:10:56 -06003461 demo->frame_index = 0;
Tony Barbour22e06272016-09-07 16:07:56 -06003462
Mark Lobodzinskieadf9982015-07-02 16:49:40 -06003463 // Get Memory information and properties
Courtney Goeltzenleuchterbd5c1742015-10-20 16:40:38 -06003464 vkGetPhysicalDeviceMemoryProperties(demo->gpu, &demo->memory_properties);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003465}
3466
Tony Barbour153cb062016-12-07 13:43:36 -07003467#if defined(VK_USE_PLATFORM_WAYLAND_KHR)
Joey Bzdek15eb0702017-06-07 09:40:36 -06003468static void pointer_handle_enter(void *data, struct wl_pointer *pointer, uint32_t serial, struct wl_surface *surface, wl_fixed_t sx,
3469 wl_fixed_t sy) {}
3470
3471static void pointer_handle_leave(void *data, struct wl_pointer *pointer, uint32_t serial, struct wl_surface *surface) {}
3472
3473static void pointer_handle_motion(void *data, struct wl_pointer *pointer, uint32_t time, wl_fixed_t sx, wl_fixed_t sy) {}
3474
3475static void pointer_handle_button(void *data, struct wl_pointer *wl_pointer, uint32_t serial, uint32_t time, uint32_t button,
3476 uint32_t state) {
3477 struct demo *demo = data;
3478 if (button == BTN_LEFT && state == WL_POINTER_BUTTON_STATE_PRESSED) {
3479 wl_shell_surface_move(demo->shell_surface, demo->seat, serial);
3480 }
3481}
3482
3483static void pointer_handle_axis(void *data, struct wl_pointer *wl_pointer, uint32_t time, uint32_t axis, wl_fixed_t value) {}
3484
3485static const struct wl_pointer_listener pointer_listener = {
3486 pointer_handle_enter, pointer_handle_leave, pointer_handle_motion, pointer_handle_button, pointer_handle_axis,
3487};
3488
3489static void keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard, uint32_t format, int fd, uint32_t size) {}
3490
3491static void keyboard_handle_enter(void *data, struct wl_keyboard *keyboard, uint32_t serial, struct wl_surface *surface,
3492 struct wl_array *keys) {}
3493
3494static void keyboard_handle_leave(void *data, struct wl_keyboard *keyboard, uint32_t serial, struct wl_surface *surface) {}
3495
3496static void keyboard_handle_key(void *data, struct wl_keyboard *keyboard, uint32_t serial, uint32_t time, uint32_t key,
3497 uint32_t state) {
3498 if (state != WL_KEYBOARD_KEY_STATE_RELEASED) return;
3499 struct demo *demo = data;
3500 switch (key) {
3501 case KEY_ESC: // Escape
3502 demo->quit = true;
3503 break;
3504 case KEY_LEFT: // left arrow key
3505 demo->spin_angle -= demo->spin_increment;
3506 break;
3507 case KEY_RIGHT: // right arrow key
3508 demo->spin_angle += demo->spin_increment;
3509 break;
3510 case KEY_SPACE: // space bar
3511 demo->pause = !demo->pause;
3512 break;
3513 }
3514}
3515
3516static void keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard, uint32_t serial, uint32_t mods_depressed,
3517 uint32_t mods_latched, uint32_t mods_locked, uint32_t group) {}
3518
3519static const struct wl_keyboard_listener keyboard_listener = {
3520 keyboard_handle_keymap, keyboard_handle_enter, keyboard_handle_leave, keyboard_handle_key, keyboard_handle_modifiers,
3521};
3522
3523static void seat_handle_capabilities(void *data, struct wl_seat *seat, enum wl_seat_capability caps) {
3524 // Subscribe to pointer events
3525 struct demo *demo = data;
3526 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !demo->pointer) {
3527 demo->pointer = wl_seat_get_pointer(seat);
3528 wl_pointer_add_listener(demo->pointer, &pointer_listener, demo);
3529 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && demo->pointer) {
3530 wl_pointer_destroy(demo->pointer);
3531 demo->pointer = NULL;
3532 }
3533 // Subscribe to keyboard events
3534 if (caps & WL_SEAT_CAPABILITY_KEYBOARD) {
3535 demo->keyboard = wl_seat_get_keyboard(seat);
3536 wl_keyboard_add_listener(demo->keyboard, &keyboard_listener, demo);
3537 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD)) {
3538 wl_keyboard_destroy(demo->keyboard);
3539 demo->keyboard = NULL;
3540 }
3541}
3542
3543static const struct wl_seat_listener seat_listener = {
3544 seat_handle_capabilities,
3545};
3546
3547static void registry_handle_global(void *data, struct wl_registry *registry, uint32_t id, const char *interface,
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003548 uint32_t version UNUSED) {
3549 struct demo *demo = data;
Joey Bzdek15eb0702017-06-07 09:40:36 -06003550 // pickup wayland objects when they appear
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003551 if (strcmp(interface, "wl_compositor") == 0) {
Joey Bzdek15eb0702017-06-07 09:40:36 -06003552 demo->compositor = wl_registry_bind(registry, id, &wl_compositor_interface, 1);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003553 } else if (strcmp(interface, "wl_shell") == 0) {
Joey Bzdek15eb0702017-06-07 09:40:36 -06003554 demo->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1);
3555 } else if (strcmp(interface, "wl_seat") == 0) {
3556 demo->seat = wl_registry_bind(registry, id, &wl_seat_interface, 1);
3557 wl_seat_add_listener(demo->seat, &seat_listener, demo);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003558 }
3559}
3560
Dave Houlton5fa47912018-02-16 11:02:26 -07003561static void registry_handle_global_remove(void *data UNUSED, struct wl_registry *registry UNUSED, uint32_t name UNUSED) {}
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003562
Dave Houlton5fa47912018-02-16 11:02:26 -07003563static const struct wl_registry_listener registry_listener = {registry_handle_global, registry_handle_global_remove};
Tony Barbourefd0c5a2016-12-07 14:45:12 -07003564#elif defined(VK_USE_PLATFORM_MIR_KHR)
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003565#endif
3566
Karl Schultze4dc75c2016-02-02 15:37:51 -07003567static void demo_init_connection(struct demo *demo) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003568#if defined(VK_USE_PLATFORM_XCB_KHR)
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003569 const xcb_setup_t *setup;
3570 xcb_screen_iterator_t iter;
3571 int scr;
3572
Mike Weiblen5d2ad542018-02-13 13:56:13 -07003573 const char *display_envar = getenv("DISPLAY");
3574 if (display_envar == NULL || display_envar[0] == '\0') {
3575 printf("Environment variable DISPLAY requires a valid value.\nExiting ...\n");
3576 fflush(stdout);
3577 exit(1);
3578 }
3579
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003580 demo->connection = xcb_connect(NULL, &scr);
Lenny Komow022bc2a2016-08-11 10:57:38 -06003581 if (xcb_connection_has_error(demo->connection) > 0) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003582 printf("Cannot find a compatible Vulkan installable client driver (ICD).\nExiting ...\n");
Ian Elliott3979e282015-04-03 15:24:55 -06003583 fflush(stdout);
3584 exit(1);
3585 }
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003586
3587 setup = xcb_get_setup(demo->connection);
3588 iter = xcb_setup_roots_iterator(setup);
Dave Houlton5fa47912018-02-16 11:02:26 -07003589 while (scr-- > 0) xcb_screen_next(&iter);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003590
3591 demo->screen = iter.data;
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003592#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
3593 demo->display = wl_display_connect(NULL);
3594
3595 if (demo->display == NULL) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003596 printf("Cannot find a compatible Vulkan installable client driver (ICD).\nExiting ...\n");
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003597 fflush(stdout);
3598 exit(1);
3599 }
3600
3601 demo->registry = wl_display_get_registry(demo->display);
3602 wl_registry_add_listener(demo->registry, &registry_listener, demo);
3603 wl_display_dispatch(demo->display);
Tony Barbourefd0c5a2016-12-07 14:45:12 -07003604#elif defined(VK_USE_PLATFORM_MIR_KHR)
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003605#endif
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003606}
3607
Karl Schultze4dc75c2016-02-02 15:37:51 -07003608static void demo_init(struct demo *demo, int argc, char **argv) {
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -06003609 vec3 eye = {0.0f, 3.0f, 5.0f};
3610 vec3 origin = {0, 0, 0};
Chia-I Wuae3b55d2015-04-22 14:56:17 +08003611 vec3 up = {0.0f, 1.0f, 0.0};
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -06003612
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003613 memset(demo, 0, sizeof(*demo));
Tony Barbour291d57b2016-10-21 14:47:07 -06003614 demo->presentMode = VK_PRESENT_MODE_FIFO_KHR;
Tony Barbour1a86d032015-09-21 15:17:33 -06003615 demo->frameCount = INT32_MAX;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003616
Piers Daniell735ee532015-02-23 16:23:13 -07003617 for (int i = 1; i < argc; i++) {
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003618 if (strcmp(argv[i], "--use_staging") == 0) {
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07003619 demo->use_staging_buffer = true;
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003620 continue;
Ian Elliott639ca472015-04-16 15:23:05 -06003621 }
Dave Houlton5fa47912018-02-16 11:02:26 -07003622 if ((strcmp(argv[i], "--present_mode") == 0) && (i < argc - 1)) {
3623 demo->presentMode = atoi(argv[i + 1]);
Tony Barbour291d57b2016-10-21 14:47:07 -06003624 i++;
3625 continue;
3626 }
Courtney Goeltzenleuchter03f4b772015-07-22 11:03:51 -06003627 if (strcmp(argv[i], "--break") == 0) {
3628 demo->use_break = true;
3629 continue;
3630 }
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003631 if (strcmp(argv[i], "--validate") == 0) {
3632 demo->validate = true;
3633 continue;
3634 }
Tobin Ehlis4eb29d62017-03-14 11:29:01 -06003635 if (strcmp(argv[i], "--validate-checks-disabled") == 0) {
3636 demo->validate = true;
3637 demo->validate_checks_disabled = true;
3638 continue;
3639 }
Tony Barbour2593b182016-04-19 10:57:58 -06003640 if (strcmp(argv[i], "--xlib") == 0) {
Tony Barbour153cb062016-12-07 13:43:36 -07003641 fprintf(stderr, "--xlib is deprecated and no longer does anything");
Tony Barbour2593b182016-04-19 10:57:58 -06003642 continue;
3643 }
Dave Houlton5fa47912018-02-16 11:02:26 -07003644 if (strcmp(argv[i], "--c") == 0 && demo->frameCount == INT32_MAX && i < argc - 1 &&
3645 sscanf(argv[i + 1], "%d", &demo->frameCount) == 1 && demo->frameCount >= 0) {
David Pinedo2bb7c932015-06-18 17:03:14 -06003646 i++;
3647 continue;
3648 }
lenny-lunargfbe22392016-06-06 11:07:53 -06003649 if (strcmp(argv[i], "--suppress_popups") == 0) {
3650 demo->suppress_popups = true;
3651 continue;
3652 }
Ian Elliottd940ca22017-03-22 08:31:27 -06003653 if (strcmp(argv[i], "--display_timing") == 0) {
3654 demo->VK_GOOGLE_display_timing_enabled = true;
3655 continue;
3656 }
Ian Elliott53622a72017-03-28 11:06:33 -06003657 if (strcmp(argv[i], "--incremental_present") == 0) {
3658 demo->VK_KHR_incremental_present_enabled = true;
3659 continue;
3660 }
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003661
Cody Northropaf28a532016-09-27 10:50:57 -06003662#if defined(ANDROID)
3663 ERR_EXIT("Usage: cube [--validate]\n", "Usage");
3664#else
Mike Schuchardt9a881512017-11-01 16:16:22 -06003665 fprintf(stderr,
Mark Young66510e52017-11-10 10:05:14 -07003666 "Usage:\n %s\t[--use_staging] [--validate] [--validate-checks-disabled] [--break]\n"
3667 "\t[--c <framecount>] [--suppress_popups] [--incremental_present] [--display_timing]\n"
3668 "\t[--present_mode <present mode enum>]\n"
3669 "\t <present_mode_enum>\tVK_PRESENT_MODE_IMMEDIATE_KHR = %d\n"
3670 "\t\t\t\tVK_PRESENT_MODE_MAILBOX_KHR = %d\n"
3671 "\t\t\t\tVK_PRESENT_MODE_FIFO_KHR = %d\n"
3672 "\t\t\t\tVK_PRESENT_MODE_FIFO_RELAXED_KHR = %d\n",
Mike Schuchardt9a881512017-11-01 16:16:22 -06003673 APP_SHORT_NAME, VK_PRESENT_MODE_IMMEDIATE_KHR, VK_PRESENT_MODE_MAILBOX_KHR, VK_PRESENT_MODE_FIFO_KHR,
3674 VK_PRESENT_MODE_FIFO_RELAXED_KHR);
Ian Elliott639ca472015-04-16 15:23:05 -06003675 fflush(stderr);
3676 exit(1);
Cody Northropaf28a532016-09-27 10:50:57 -06003677#endif
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07003678 }
3679
Tony Barbour153cb062016-12-07 13:43:36 -07003680 demo_init_connection(demo);
Tony Barbour2593b182016-04-19 10:57:58 -06003681
Courtney Goeltzenleuchtera4131c42015-04-08 15:36:08 -06003682 demo_init_vk(demo);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003683
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -06003684 demo->width = 500;
3685 demo->height = 500;
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -06003686
Tony Barbour66a56c32016-09-21 13:10:56 -06003687 demo->spin_angle = 4.0f;
3688 demo->spin_increment = 0.2f;
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -06003689 demo->pause = false;
3690
Dave Houlton5fa47912018-02-16 11:02:26 -07003691 mat4x4_perspective(demo->projection_matrix, (float)degreesToRadians(45.0f), 1.0f, 0.1f, 100.0f);
Courtney Goeltzenleuchter8879d3a2014-10-29 08:29:35 -06003692 mat4x4_look_at(demo->view_matrix, eye, origin, up);
3693 mat4x4_identity(demo->model_matrix);
Rene Lindsaybcccdea2016-08-12 17:56:09 -06003694
Dave Houlton5fa47912018-02-16 11:02:26 -07003695 demo->projection_matrix[1][1] *= -1; // Flip projection matrix from GL to Vulkan orientation.
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003696}
3697
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003698#if defined(VK_USE_PLATFORM_WIN32_KHR)
Mark Young418b9d12016-01-06 14:26:04 -07003699// Include header required for parsing the command line options.
3700#include <shellapi.h>
Ian Elliottf9cf78c2015-04-28 10:33:11 -06003701
Dave Houlton5fa47912018-02-16 11:02:26 -07003702int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR pCmdLine, int nCmdShow) {
3703 MSG msg; // message
3704 bool done; // flag saying when app is complete
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003705 int argc;
Karl Schultze4dc75c2016-02-02 15:37:51 -07003706 char **argv;
Ian Elliott639ca472015-04-16 15:23:05 -06003707
Jamie Madillb2ff6502017-03-15 16:17:46 -04003708 // Ensure wParam is initialized.
3709 msg.wParam = 0;
3710
Karl Schultze4dc75c2016-02-02 15:37:51 -07003711 // Use the CommandLine functions to get the command line arguments.
3712 // Unfortunately, Microsoft outputs
3713 // this information as wide characters for Unicode, and we simply want the
3714 // Ascii version to be compatible
3715 // with the non-Windows side. So, we have to convert the information to
3716 // Ascii character strings.
3717 LPWSTR *commandLineArgs = CommandLineToArgvW(GetCommandLineW(), &argc);
3718 if (NULL == commandLineArgs) {
Mark Young418b9d12016-01-06 14:26:04 -07003719 argc = 0;
3720 }
3721
Karl Schultze4dc75c2016-02-02 15:37:51 -07003722 if (argc > 0) {
3723 argv = (char **)malloc(sizeof(char *) * argc);
3724 if (argv == NULL) {
Mark Young418b9d12016-01-06 14:26:04 -07003725 argc = 0;
Karl Schultze4dc75c2016-02-02 15:37:51 -07003726 } else {
3727 for (int iii = 0; iii < argc; iii++) {
3728 size_t wideCharLen = wcslen(commandLineArgs[iii]);
Mark Young418b9d12016-01-06 14:26:04 -07003729 size_t numConverted = 0;
3730
Karl Schultze4dc75c2016-02-02 15:37:51 -07003731 argv[iii] = (char *)malloc(sizeof(char) * (wideCharLen + 1));
3732 if (argv[iii] != NULL) {
Dave Houlton5fa47912018-02-16 11:02:26 -07003733 wcstombs_s(&numConverted, argv[iii], wideCharLen + 1, commandLineArgs[iii], wideCharLen + 1);
Mark Young418b9d12016-01-06 14:26:04 -07003734 }
3735 }
3736 }
Karl Schultze4dc75c2016-02-02 15:37:51 -07003737 } else {
Mark Young418b9d12016-01-06 14:26:04 -07003738 argv = NULL;
3739 }
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003740
3741 demo_init(&demo, argc, argv);
Mark Young418b9d12016-01-06 14:26:04 -07003742
3743 // Free up the items we had to allocate for the command line arguments.
Karl Schultze4dc75c2016-02-02 15:37:51 -07003744 if (argc > 0 && argv != NULL) {
3745 for (int iii = 0; iii < argc; iii++) {
3746 if (argv[iii] != NULL) {
Mark Young418b9d12016-01-06 14:26:04 -07003747 free(argv[iii]);
3748 }
3749 }
3750 free(argv);
3751 }
3752
Tony Barbour3dddd5d2015-04-29 16:19:20 -06003753 demo.connection = hInstance;
3754 strncpy(demo.name, "cube", APP_NAME_STR_LEN);
Ian Elliott639ca472015-04-16 15:23:05 -06003755 demo_create_window(&demo);
Tony Barbourcc69f452015-10-08 13:59:42 -06003756 demo_init_vk_swapchain(&demo);
Ian Elliott639ca472015-04-16 15:23:05 -06003757
3758 demo_prepare(&demo);
3759
Dave Houlton5fa47912018-02-16 11:02:26 -07003760 done = false; // initialize loop condition variable
Mark Young418b9d12016-01-06 14:26:04 -07003761
3762 // main message loop
Karl Schultze4dc75c2016-02-02 15:37:51 -07003763 while (!done) {
Ian Elliotta748eaf2015-04-28 15:50:36 -06003764 PeekMessage(&msg, NULL, 0, 0, PM_REMOVE);
Dave Houlton5fa47912018-02-16 11:02:26 -07003765 if (msg.message == WM_QUIT) // check for a quit message
Ian Elliott639ca472015-04-16 15:23:05 -06003766 {
Dave Houlton5fa47912018-02-16 11:02:26 -07003767 done = true; // if found, quit app
Karl Schultze4dc75c2016-02-02 15:37:51 -07003768 } else {
Ian Elliott639ca472015-04-16 15:23:05 -06003769 /* Translate and dispatch to event queue*/
Karl Schultze4dc75c2016-02-02 15:37:51 -07003770 TranslateMessage(&msg);
Ian Elliott639ca472015-04-16 15:23:05 -06003771 DispatchMessage(&msg);
3772 }
Tony Barbourc8a59892015-10-20 12:49:46 -06003773 RedrawWindow(demo.window, NULL, NULL, RDW_INTERNALPAINT);
Ian Elliott639ca472015-04-16 15:23:05 -06003774 }
3775
3776 demo_cleanup(&demo);
3777
Karl Schultze4dc75c2016-02-02 15:37:51 -07003778 return (int)msg.wParam;
Ian Elliott639ca472015-04-16 15:23:05 -06003779}
Bill Hollingsf4352142017-02-14 22:58:56 -05003780
3781#elif defined(VK_USE_PLATFORM_IOS_MVK) || defined(VK_USE_PLATFORM_MACOS_MVK)
Karl Schultz206b1c52018-04-13 18:02:07 -06003782static void demo_main(struct demo *demo, void *view, int argc, const char *argv[]) {
Bill Hollingsf4352142017-02-14 22:58:56 -05003783
Dave Houlton5fa47912018-02-16 11:02:26 -07003784 demo_init(demo, argc, (char **)argv);
Tony Barbourc65cd752017-03-13 15:29:35 -06003785 demo->window = view;
3786 demo_init_vk_swapchain(demo);
3787 demo_prepare(demo);
3788 demo->spin_angle = 0.4f;
Bill Hollingsf4352142017-02-14 22:58:56 -05003789}
3790
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003791#elif defined(VK_USE_PLATFORM_ANDROID_KHR)
3792#include <android/log.h>
3793#include <android_native_app_glue.h>
Cody Northropc5e5a8c2016-09-26 21:05:00 -06003794#include "android_util.h"
3795
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003796static bool initialized = false;
3797static bool active = false;
3798struct demo demo;
3799
Dave Houlton5fa47912018-02-16 11:02:26 -07003800static int32_t processInput(struct android_app *app, AInputEvent *event) { return 0; }
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003801
Dave Houlton5fa47912018-02-16 11:02:26 -07003802static void processCommand(struct android_app *app, int32_t cmd) {
3803 switch (cmd) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003804 case APP_CMD_INIT_WINDOW: {
3805 if (app->window) {
Ian Elliottf05d5d12016-05-17 12:03:35 -06003806 // We're getting a new window. If the app is starting up, we
3807 // need to initialize. If the app has already been
3808 // initialized, that means that we lost our previous window,
3809 // which means that we have a lot of work to do. At a minimum,
3810 // we need to destroy the swapchain and surface associated with
3811 // the old window, and create a new surface and swapchain.
3812 // However, since there are a lot of other objects/state that
3813 // is tied to the swapchain, it's easiest to simply cleanup and
3814 // start over (i.e. use a brute-force approach of re-starting
3815 // the app)
3816 if (demo.prepared) {
3817 demo_cleanup(&demo);
3818 }
Cody Northropc5e5a8c2016-09-26 21:05:00 -06003819
3820 // Parse Intents into argc, argv
3821 // Use the following key to send arguments, i.e.
3822 // --es args "--validate"
3823 const char key[] = "args";
Dave Houlton5fa47912018-02-16 11:02:26 -07003824 char *appTag = (char *)APP_SHORT_NAME;
Cody Northropc5e5a8c2016-09-26 21:05:00 -06003825 int argc = 0;
Dave Houlton5fa47912018-02-16 11:02:26 -07003826 char **argv = get_args(app, key, appTag, &argc);
Cody Northropc5e5a8c2016-09-26 21:05:00 -06003827
3828 __android_log_print(ANDROID_LOG_INFO, appTag, "argc = %i", argc);
Dave Houlton5fa47912018-02-16 11:02:26 -07003829 for (int i = 0; i < argc; i++) __android_log_print(ANDROID_LOG_INFO, appTag, "argv[%i] = %s", i, argv[i]);
Cody Northropc5e5a8c2016-09-26 21:05:00 -06003830
3831 demo_init(&demo, argc, argv);
3832
3833 // Free the argv malloc'd by get_args
Dave Houlton5fa47912018-02-16 11:02:26 -07003834 for (int i = 0; i < argc; i++) free(argv[i]);
Cody Northropc5e5a8c2016-09-26 21:05:00 -06003835
Dave Houlton5fa47912018-02-16 11:02:26 -07003836 demo.window = (void *)app->window;
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003837 demo_init_vk_swapchain(&demo);
3838 demo_prepare(&demo);
3839 initialized = true;
3840 }
3841 break;
3842 }
3843 case APP_CMD_GAINED_FOCUS: {
3844 active = true;
3845 break;
3846 }
3847 case APP_CMD_LOST_FOCUS: {
3848 active = false;
3849 break;
3850 }
3851 }
3852}
3853
Dave Houlton5fa47912018-02-16 11:02:26 -07003854void android_main(struct android_app *app) {
Cody Northrop8707a6e2016-04-26 19:59:19 -06003855#ifdef ANDROID
3856 int vulkanSupport = InitVulkan();
Dave Houlton5fa47912018-02-16 11:02:26 -07003857 if (vulkanSupport == 0) return;
Cody Northrop8707a6e2016-04-26 19:59:19 -06003858#endif
3859
Ian Elliottf05d5d12016-05-17 12:03:35 -06003860 demo.prepared = false;
3861
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003862 app->onAppCmd = processCommand;
3863 app->onInputEvent = processInput;
3864
Dave Houlton5fa47912018-02-16 11:02:26 -07003865 while (1) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003866 int events;
Dave Houlton5fa47912018-02-16 11:02:26 -07003867 struct android_poll_source *source;
3868 while (ALooper_pollAll(active ? 0 : -1, NULL, &events, (void **)&source) >= 0) {
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003869 if (source) {
3870 source->process(app, source);
3871 }
3872
3873 if (app->destroyRequested != 0) {
3874 demo_cleanup(&demo);
3875 return;
3876 }
3877 }
3878 if (initialized && active) {
3879 demo_run(&demo);
3880 }
3881 }
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003882}
Tobin Ehlis43ed2982016-04-28 10:17:33 -06003883#else
Karl Schultze4dc75c2016-02-02 15:37:51 -07003884int main(int argc, char **argv) {
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003885 struct demo demo;
3886
Courtney Goeltzenleuchterb4fc0072015-02-17 12:54:31 -07003887 demo_init(&demo, argc, argv);
Tony Barbour153cb062016-12-07 13:43:36 -07003888#if defined(VK_USE_PLATFORM_XCB_KHR)
Tony Barbour8295ac42016-08-08 11:04:17 -06003889 demo_create_xcb_window(&demo);
3890#elif defined(VK_USE_PLATFORM_XLIB_KHR)
3891 demo_create_xlib_window(&demo);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003892#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
3893 demo_create_window(&demo);
Tony Barbourefd0c5a2016-12-07 14:45:12 -07003894#elif defined(VK_USE_PLATFORM_MIR_KHR)
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003895#endif
Tony Barbour2593b182016-04-19 10:57:58 -06003896
Tony Barbourcc69f452015-10-08 13:59:42 -06003897 demo_init_vk_swapchain(&demo);
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003898
3899 demo_prepare(&demo);
Tony Barbour2593b182016-04-19 10:57:58 -06003900
Tony Barbour153cb062016-12-07 13:43:36 -07003901#if defined(VK_USE_PLATFORM_XCB_KHR)
Tony Barbour8295ac42016-08-08 11:04:17 -06003902 demo_run_xcb(&demo);
3903#elif defined(VK_USE_PLATFORM_XLIB_KHR)
3904 demo_run_xlib(&demo);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003905#elif defined(VK_USE_PLATFORM_WAYLAND_KHR)
3906 demo_run(&demo);
Tony Barbourefd0c5a2016-12-07 14:45:12 -07003907#elif defined(VK_USE_PLATFORM_MIR_KHR)
Damien Leone600c3052017-01-31 10:26:07 -07003908#elif defined(VK_USE_PLATFORM_DISPLAY_KHR)
3909 demo_run_display(&demo);
Mun Gwan-gyeong6f01c552016-06-27 05:34:44 +09003910#endif
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003911
3912 demo_cleanup(&demo);
3913
Karl Schultz0218c002016-03-22 17:06:13 -06003914 return validation_error;
Courtney Goeltzenleuchter7be88a82014-10-23 13:16:59 -06003915}
Michael Lentinec6cde4b2016-04-18 13:20:45 -05003916#endif