blob: 7eb58562a152f894c16b590ab30e185b80733b3e [file] [log] [blame]
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -06001/*
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002 * Vulkan Tests
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -06003 *
4 * Copyright (C) 2014 LunarG, Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Courtney Goeltzenleuchter <courtney@lunarg.com>
26 */
27
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060028#include "vkrenderframework.h"
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -060029
Jon Ashburn83a64252015-04-15 11:31:12 -060030#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
31
Tony Barbour6918cd52015-04-09 12:58:51 -060032VkRenderFramework::VkRenderFramework() :
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060033 m_cmdBuffer( VK_NULL_HANDLE ),
Tony Barbourf77fd652015-04-09 11:07:02 -060034 m_renderPass(VK_NULL_HANDLE),
35 m_framebuffer(VK_NULL_HANDLE),
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060036 m_stateRaster( VK_NULL_HANDLE ),
37 m_colorBlend( VK_NULL_HANDLE ),
38 m_stateViewport( VK_NULL_HANDLE ),
39 m_stateDepthStencil( VK_NULL_HANDLE ),
Courtney Goeltzenleuchter02d33c12014-10-08 14:26:40 -060040 m_width( 256.0 ), // default window width
Courtney Goeltzenleuchter679bbfa2015-03-05 17:26:38 -070041 m_height( 256.0 ), // default window height
Tony Barbourd1c35722015-04-16 15:59:00 -060042 m_render_target_fmt( VK_FORMAT_R8G8B8A8_UNORM ),
43 m_depth_stencil_fmt( VK_FORMAT_UNDEFINED ),
Tony Barbour71bd4b32015-07-21 17:00:26 -060044 m_clear_via_load_op( true ),
Courtney Goeltzenleuchter679bbfa2015-03-05 17:26:38 -070045 m_depth_clear_color( 1.0 ),
Courtney Goeltzenleuchterb6c9aca2015-06-08 16:19:37 -060046 m_stencil_clear_color( 0 ),
47 m_depthStencil( NULL ),
48 m_dbgCreateMsgCallback( VK_NULL_HANDLE ),
49 m_dbgDestroyMsgCallback( VK_NULL_HANDLE ),
50 m_globalMsgCallback( VK_NULL_HANDLE ),
51 m_devMsgCallback( VK_NULL_HANDLE )
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -060052{
Tony Barbour1c45ce02015-03-27 17:03:18 -060053
Chia-I Wu08accc62015-07-07 11:50:03 +080054 memset(&m_renderPassBeginInfo, 0, sizeof(m_renderPassBeginInfo));
55 m_renderPassBeginInfo.sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO;
56
Courtney Goeltzenleuchter679bbfa2015-03-05 17:26:38 -070057 // clear the back buffer to dark grey
Chris Forbesf0796e12015-06-24 14:34:53 +120058 m_clear_color.f32[0] = 0.25f;
59 m_clear_color.f32[1] = 0.25f;
60 m_clear_color.f32[2] = 0.25f;
61 m_clear_color.f32[3] = 0.0f;
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -060062}
63
Tony Barbour6918cd52015-04-09 12:58:51 -060064VkRenderFramework::~VkRenderFramework()
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -060065{
Courtney Goeltzenleuchter53d8d892014-10-08 12:20:26 -060066
67}
68
Tony Barbour6918cd52015-04-09 12:58:51 -060069void VkRenderFramework::InitFramework()
Courtney Goeltzenleuchter53d8d892014-10-08 12:20:26 -060070{
Courtney Goeltzenleuchtercd69eee2015-07-06 09:10:47 -060071 std::vector<const char*> instance_layer_names;
72 std::vector<const char*> device_layer_names;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060073 std::vector<const char*> instance_extension_names;
74 std::vector<const char*> device_extension_names;
Courtney Goeltzenleuchtercd69eee2015-07-06 09:10:47 -060075 InitFramework(
76 instance_layer_names, device_layer_names,
77 instance_extension_names, device_extension_names);
Tony Barbour3fdff9e2015-04-23 12:55:36 -060078}
79
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060080void VkRenderFramework::InitFramework(
Courtney Goeltzenleuchtercd69eee2015-07-06 09:10:47 -060081 std::vector<const char *> instance_layer_names,
82 std::vector<const char *> device_layer_names,
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060083 std::vector<const char *> instance_extension_names,
84 std::vector<const char *> device_extension_names,
85 PFN_vkDbgMsgCallback dbgFunction,
86 void *userData)
Tony Barbour3fdff9e2015-04-23 12:55:36 -060087{
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -060088 VkInstanceCreateInfo instInfo = {};
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060089 std::vector<VkExtensionProperties> instance_extensions;
90 std::vector<VkExtensionProperties> device_extensions;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060091 VkResult U_ASSERT_ONLY err;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060092
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -060093 /* TODO: Verify requested extensions are available */
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060094
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060095 instInfo.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
Jon Ashburnb317fad2015-04-04 14:52:07 -060096 instInfo.pNext = NULL;
97 instInfo.pAppInfo = &app_info;
98 instInfo.pAllocCb = NULL;
Courtney Goeltzenleuchtercd69eee2015-07-06 09:10:47 -060099 instInfo.layerCount = instance_layer_names.size();
100 instInfo.ppEnabledLayerNames =(instance_layer_names.size()) ? &instance_layer_names[0] : NULL;
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600101 instInfo.extensionCount = instance_extension_names.size();
102 instInfo.ppEnabledExtensionNames = (instance_extension_names.size()) ? &instance_extension_names[0] : NULL;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600103 err = vkCreateInstance(&instInfo, &this->inst);
104 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600105
Jon Ashburn83a64252015-04-15 11:31:12 -0600106 err = vkEnumeratePhysicalDevices(inst, &this->gpu_count, NULL);
107 ASSERT_LE(this->gpu_count, ARRAY_SIZE(objs)) << "Too many gpus";
108 ASSERT_VK_SUCCESS(err);
109 err = vkEnumeratePhysicalDevices(inst, &this->gpu_count, objs);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600110 ASSERT_VK_SUCCESS(err);
Jon Ashburnbf843b22014-11-26 11:06:49 -0700111 ASSERT_GE(this->gpu_count, 1) << "No GPU available";
Tony Barbour15524c32015-04-29 17:34:29 -0600112 if (dbgFunction) {
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600113 m_dbgCreateMsgCallback = (PFN_vkDbgCreateMsgCallback) vkGetInstanceProcAddr(this->inst, "vkDbgCreateMsgCallback");
114 ASSERT_NE(m_dbgCreateMsgCallback, (PFN_vkDbgCreateMsgCallback) NULL) << "Did not get function pointer for DbgCreateMsgCallback";
115 if (m_dbgCreateMsgCallback) {
116 err = m_dbgCreateMsgCallback(this->inst,
117 VK_DBG_REPORT_ERROR_BIT | VK_DBG_REPORT_WARN_BIT,
118 dbgFunction,
119 userData,
Courtney Goeltzenleuchterd971b612015-06-17 20:51:59 -0600120 &m_globalMsgCallback);
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600121 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter7e46b622015-06-08 15:16:04 -0600122
123 m_dbgDestroyMsgCallback = (PFN_vkDbgDestroyMsgCallback) vkGetInstanceProcAddr(this->inst, "vkDbgDestroyMsgCallback");
124 ASSERT_NE(m_dbgDestroyMsgCallback, (PFN_vkDbgDestroyMsgCallback) NULL) << "Did not get function pointer for DbgDestroyMsgCallback";
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600125 }
Tony Barbour15524c32015-04-29 17:34:29 -0600126 }
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600127
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600128 /* TODO: Verify requested physical device extensions are available */
Courtney Goeltzenleuchter5bac6092015-07-07 11:47:33 -0600129 m_device = new VkDeviceObj(0, objs[0], device_layer_names, device_extension_names);
Courtney Goeltzenleuchterd971b612015-06-17 20:51:59 -0600130
131 /* Now register callback on device */
132 if (0) {
133 if (m_dbgCreateMsgCallback) {
134 err = m_dbgCreateMsgCallback(this->inst,
135 VK_DBG_REPORT_ERROR_BIT | VK_DBG_REPORT_WARN_BIT,
136 dbgFunction,
137 userData,
138 &m_devMsgCallback);
139 ASSERT_VK_SUCCESS(err);
140 }
141 }
Courtney Goeltzenleuchter53d8d892014-10-08 12:20:26 -0600142 m_device->get_device_queue();
Tony Barbour1c45ce02015-03-27 17:03:18 -0600143
Tony Barbour6918cd52015-04-09 12:58:51 -0600144 m_depthStencil = new VkDepthStencilObj();
Courtney Goeltzenleuchter53d8d892014-10-08 12:20:26 -0600145}
146
Tony Barbour6918cd52015-04-09 12:58:51 -0600147void VkRenderFramework::ShutdownFramework()
Courtney Goeltzenleuchter53d8d892014-10-08 12:20:26 -0600148{
Tony Barbour67e99152015-07-10 14:10:27 -0600149 if (m_colorBlend) vkDestroyDynamicColorBlendState(device(), m_colorBlend);
150 if (m_stateDepthStencil) vkDestroyDynamicDepthStencilState(device(), m_stateDepthStencil);
151 if (m_stateRaster) vkDestroyDynamicRasterState(device(), m_stateRaster);
152 if (m_cmdBuffer) vkDestroyCommandBuffer(device(), m_cmdBuffer);
Cody Northrope62183e2015-07-09 18:08:05 -0600153 if (m_cmdPool) vkDestroyCommandPool(device(), m_cmdPool);
Tony Barbour67e99152015-07-10 14:10:27 -0600154 if (m_framebuffer) vkDestroyFramebuffer(device(), m_framebuffer);
155 if (m_renderPass) vkDestroyRenderPass(device(), m_renderPass);
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600156
Courtney Goeltzenleuchter7e46b622015-06-08 15:16:04 -0600157 if (m_globalMsgCallback) m_dbgDestroyMsgCallback(this->inst, m_globalMsgCallback);
158 if (m_devMsgCallback) m_dbgDestroyMsgCallback(this->inst, m_devMsgCallback);
159
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600160 if (m_stateViewport) {
Tony Barbour67e99152015-07-10 14:10:27 -0600161 vkDestroyDynamicViewportState(device(), m_stateViewport);
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600162 }
Tobin Ehlis976fc162015-03-26 08:23:25 -0600163 while (!m_renderTargets.empty()) {
Tony Barbour67e99152015-07-10 14:10:27 -0600164 vkDestroyAttachmentView(device(), m_renderTargets.back()->targetView());
165 vkDestroyImage(device(), m_renderTargets.back()->image());
Mike Stroyanb050c682015-04-17 12:36:38 -0600166 vkFreeMemory(device(), m_renderTargets.back()->memory());
Tobin Ehlis976fc162015-03-26 08:23:25 -0600167 m_renderTargets.pop_back();
168 }
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600169
Tony Barbour1c45ce02015-03-27 17:03:18 -0600170 delete m_depthStencil;
171
Courtney Goeltzenleuchter53d8d892014-10-08 12:20:26 -0600172 // reset the driver
Chia-I Wub76e0fa2014-12-28 14:27:28 +0800173 delete m_device;
Chris Forbesbe2fae62015-07-07 11:02:22 +1200174 if (this->inst) vkDestroyInstance(this->inst);
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600175}
176
Tony Barbour6918cd52015-04-09 12:58:51 -0600177void VkRenderFramework::InitState()
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600178{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600179 VkResult err;
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600180
Tony Barbourd1c35722015-04-16 15:59:00 -0600181 m_render_target_fmt = VK_FORMAT_B8G8R8A8_UNORM;
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600182
183 // create a raster state (solid, back-face culling)
Tony Barbour67e99152015-07-10 14:10:27 -0600184 VkDynamicRasterStateCreateInfo raster = {};
185 raster.sType = VK_STRUCTURE_TYPE_DYNAMIC_RASTER_STATE_CREATE_INFO;
Tony Barbourf52346d2015-01-16 14:27:35 -0700186
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600187 err = vkCreateDynamicRasterState( device(), &raster, &m_stateRaster );
188 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600189
Tony Barbour67e99152015-07-10 14:10:27 -0600190 VkDynamicColorBlendStateCreateInfo blend = {};
191 blend.sType = VK_STRUCTURE_TYPE_DYNAMIC_COLOR_BLEND_STATE_CREATE_INFO;
Tony Barbourd81b8882015-05-15 09:37:57 -0600192 blend.blendConst[0] = 1.0f;
193 blend.blendConst[1] = 1.0f;
194 blend.blendConst[2] = 1.0f;
195 blend.blendConst[3] = 1.0f;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600196 err = vkCreateDynamicColorBlendState(device(), &blend, &m_colorBlend);
197 ASSERT_VK_SUCCESS( err );
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600198
Tony Barbour67e99152015-07-10 14:10:27 -0600199 VkDynamicDepthStencilStateCreateInfo depthStencil = {};
200 depthStencil.sType = VK_STRUCTURE_TYPE_DYNAMIC_DEPTH_STENCIL_STATE_CREATE_INFO;
Mark Lobodzinski365feea2015-06-12 11:14:17 -0600201 depthStencil.minDepthBounds = 0.f;
202 depthStencil.maxDepthBounds = 1.f;
Tony Barbourf52346d2015-01-16 14:27:35 -0700203 depthStencil.stencilFrontRef = 0;
204 depthStencil.stencilBackRef = 0;
Tony Barbourd81b8882015-05-15 09:37:57 -0600205 depthStencil.stencilReadMask = 0xff;
206 depthStencil.stencilWriteMask = 0xff;
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600207
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600208 err = vkCreateDynamicDepthStencilState( device(), &depthStencil, &m_stateDepthStencil );
209 ASSERT_VK_SUCCESS( err );
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600210
Cody Northrope62183e2015-07-09 18:08:05 -0600211 VkCmdPoolCreateInfo cmd_pool_info;
212 cmd_pool_info.sType = VK_STRUCTURE_TYPE_CMD_POOL_CREATE_INFO,
213 cmd_pool_info.pNext = NULL,
214 cmd_pool_info.queueFamilyIndex = m_device->graphics_queue_node_index_;
215 cmd_pool_info.flags = 0,
216 err = vkCreateCommandPool(device(), &cmd_pool_info, &m_cmdPool);
217 assert(!err);
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600218
Cody Northrope62183e2015-07-09 18:08:05 -0600219 VkCmdBufferCreateInfo cmdInfo = vk_testing::CmdBuffer::create_info(m_cmdPool);
Courtney Goeltzenleuchter18248e62015-03-05 18:09:39 -0700220
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600221 err = vkCreateCommandBuffer(device(), &cmdInfo, &m_cmdBuffer);
222 ASSERT_VK_SUCCESS(err) << "vkCreateCommandBuffer failed";
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600223}
224
Tony Barbour6918cd52015-04-09 12:58:51 -0600225void VkRenderFramework::InitViewport(float width, float height)
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600226{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600227 VkResult err;
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600228
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600229 VkViewport viewport;
Chris Forbesd9be82b2015-06-22 17:21:59 +1200230 VkRect2D scissor;
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600231
Tony Barbour67e99152015-07-10 14:10:27 -0600232 VkDynamicViewportStateCreateInfo viewportCreate = {};
233 viewportCreate.sType = VK_STRUCTURE_TYPE_DYNAMIC_VIEWPORT_STATE_CREATE_INFO;
Courtney Goeltzenleuchterbbe3cc52015-02-11 14:13:34 -0700234 viewportCreate.viewportAndScissorCount = 1;
Tony Barbourf52346d2015-01-16 14:27:35 -0700235 viewport.originX = 0;
236 viewport.originY = 0;
237 viewport.width = 1.f * width;
238 viewport.height = 1.f * height;
239 viewport.minDepth = 0.f;
240 viewport.maxDepth = 1.f;
Tony Barbour7ea6aa22015-05-22 09:44:58 -0600241 scissor.extent.width = (int32_t) width;
242 scissor.extent.height = (int32_t) height;
Courtney Goeltzenleuchterbbe3cc52015-02-11 14:13:34 -0700243 scissor.offset.x = 0;
244 scissor.offset.y = 0;
Tony Barbourf52346d2015-01-16 14:27:35 -0700245 viewportCreate.pViewports = &viewport;
Courtney Goeltzenleuchterbbe3cc52015-02-11 14:13:34 -0700246 viewportCreate.pScissors = &scissor;
Tony Barbourf52346d2015-01-16 14:27:35 -0700247
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600248 err = vkCreateDynamicViewportState( device(), &viewportCreate, &m_stateViewport );
249 ASSERT_VK_SUCCESS( err );
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600250 m_width = width;
251 m_height = height;
252}
253
Tony Barbour6918cd52015-04-09 12:58:51 -0600254void VkRenderFramework::InitViewport()
Courtney Goeltzenleuchter02d33c12014-10-08 14:26:40 -0600255{
256 InitViewport(m_width, m_height);
257}
Tony Barbour6918cd52015-04-09 12:58:51 -0600258void VkRenderFramework::InitRenderTarget()
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600259{
Courtney Goeltzenleuchterb4337c12015-03-05 16:47:18 -0700260 InitRenderTarget(1);
261}
262
Tony Barbour6918cd52015-04-09 12:58:51 -0600263void VkRenderFramework::InitRenderTarget(uint32_t targets)
Courtney Goeltzenleuchterb4337c12015-03-05 16:47:18 -0700264{
Tony Barbour1c45ce02015-03-27 17:03:18 -0600265 InitRenderTarget(targets, NULL);
266}
267
Chia-I Wu08accc62015-07-07 11:50:03 +0800268void VkRenderFramework::InitRenderTarget(VkAttachmentBindInfo *dsBinding)
Tony Barbour1c45ce02015-03-27 17:03:18 -0600269{
270 InitRenderTarget(1, dsBinding);
271}
272
Chia-I Wu08accc62015-07-07 11:50:03 +0800273void VkRenderFramework::InitRenderTarget(uint32_t targets, VkAttachmentBindInfo *dsBinding)
Tony Barbour1c45ce02015-03-27 17:03:18 -0600274{
Chia-I Wu08accc62015-07-07 11:50:03 +0800275 std::vector<VkAttachmentDescription> attachments;
276 std::vector<VkAttachmentReference> color_references;
277 std::vector<VkAttachmentBindInfo> bindings;
278 attachments.reserve(targets + (bool) dsBinding);
279 color_references.reserve(targets);
280 bindings.reserve(targets + (bool) dsBinding);
Tony Barbour1c45ce02015-03-27 17:03:18 -0600281
Chia-I Wu08accc62015-07-07 11:50:03 +0800282 VkAttachmentDescription att = {};
283 att.sType = VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION;
284 att.pNext = NULL;
285 att.format = m_render_target_fmt;
286 att.samples = 1;
287 att.loadOp = (m_clear_via_load_op) ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMENT_LOAD_OP_LOAD;
288 att.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
289 att.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE;
290 att.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE;
291 att.initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
292 att.finalLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
Chia-I Wuecebf752014-12-05 10:45:15 +0800293
Chia-I Wu08accc62015-07-07 11:50:03 +0800294 VkAttachmentReference ref = {};
295 ref.layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
296
297 m_renderPassClearValues.clear();
298 VkClearValue clear = {};
299 clear.color = m_clear_color;
300
301 VkAttachmentBindInfo bind = {};
302 bind.layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
303
304 for (uint32_t i = 0; i < targets; i++) {
305 attachments.push_back(att);
306
307 ref.attachment = i;
308 color_references.push_back(ref);
309
310 m_renderPassClearValues.push_back(clear);
311
Tony Barbour6918cd52015-04-09 12:58:51 -0600312 VkImageObj *img = new VkImageObj(m_device);
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600313
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600314 VkFormatProperties props;
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600315 VkResult err;
316
Courtney Goeltzenleuchter2caec862015-07-12 12:52:09 -0600317 err = vkGetPhysicalDeviceFormatProperties(m_device->phy().handle(), m_render_target_fmt, &props);
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600318 ASSERT_VK_SUCCESS(err);
319
320 if (props.linearTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) {
Tony Barbour7ea6aa22015-05-22 09:44:58 -0600321 img->init((uint32_t)m_width, (uint32_t)m_height, m_render_target_fmt,
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600322 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, VK_IMAGE_TILING_LINEAR);
323 }
324 else if (props.optimalTilingFeatures & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT) {
Tony Barbour7ea6aa22015-05-22 09:44:58 -0600325 img->init((uint32_t)m_width, (uint32_t)m_height, m_render_target_fmt,
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600326 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, VK_IMAGE_TILING_OPTIMAL);
327 }
328 else {
329 FAIL() << "Neither Linear nor Optimal allowed for render target";
330 }
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600331
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600332 m_renderTargets.push_back(img);
Chia-I Wu08accc62015-07-07 11:50:03 +0800333 bind.view = img->targetView();
334
335 bindings.push_back(bind);
Chia-I Wuecebf752014-12-05 10:45:15 +0800336 }
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600337
Chia-I Wu08accc62015-07-07 11:50:03 +0800338 VkSubpassDescription subpass = {};
339 subpass.sType = VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION;
340 subpass.pNext = NULL;
341 subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
342 subpass.flags = 0;
343 subpass.inputCount = 0;
344 subpass.inputAttachments = NULL;
345 subpass.colorCount = targets;
346 subpass.colorAttachments = &color_references[0];
347 subpass.resolveAttachments = NULL;
348
349 if (dsBinding) {
350 att.format = m_depth_stencil_fmt;
Tony Barbour71bd4b32015-07-21 17:00:26 -0600351 att.loadOp = (m_clear_via_load_op) ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMENT_LOAD_OP_LOAD;;
Chia-I Wu08accc62015-07-07 11:50:03 +0800352 att.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
353 att.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
354 att.stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE;
355 att.initialLayout = dsBinding->layout;
356 att.finalLayout = dsBinding->layout;
357 attachments.push_back(att);
358
359 clear.ds.depth = m_depth_clear_color;
360 clear.ds.stencil = m_stencil_clear_color;
361 m_renderPassClearValues.push_back(clear);
362
363 bindings.push_back(*dsBinding);
364
365 subpass.depthStencilAttachment.attachment = targets;
366 subpass.depthStencilAttachment.layout = dsBinding->layout;
367 } else {
368 subpass.depthStencilAttachment.attachment = VK_ATTACHMENT_UNUSED;
369 }
370
371 subpass.preserveCount = 0;
372 subpass.preserveAttachments = NULL;
373
374 VkRenderPassCreateInfo rp_info = {};
375 rp_info.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO;
376 rp_info.attachmentCount = attachments.size();
377 rp_info.pAttachments = &attachments[0];
378 rp_info.subpassCount = 1;
379 rp_info.pSubpasses = &subpass;
380
381 vkCreateRenderPass(device(), &rp_info, &m_renderPass);
382
383 // Create Framebuffer and RenderPass with color attachments and any depth/stencil attachment
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600384 VkFramebufferCreateInfo fb_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600385 fb_info.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO;
Tony Barbourbdf0a312015-04-01 17:10:07 -0600386 fb_info.pNext = NULL;
Chia-I Wu08accc62015-07-07 11:50:03 +0800387 fb_info.renderPass = m_renderPass;
388 fb_info.attachmentCount = bindings.size();
389 fb_info.pAttachments = &bindings[0];
Tony Barbourbdf0a312015-04-01 17:10:07 -0600390 fb_info.width = (uint32_t)m_width;
391 fb_info.height = (uint32_t)m_height;
392 fb_info.layers = 1;
393
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600394 vkCreateFramebuffer(device(), &fb_info, &m_framebuffer);
Courtney Goeltzenleuchter69894b72015-04-03 15:25:24 -0600395
Chia-I Wu08accc62015-07-07 11:50:03 +0800396 m_renderPassBeginInfo.renderPass = m_renderPass;
397 m_renderPassBeginInfo.framebuffer = m_framebuffer;
398 m_renderPassBeginInfo.renderArea.extent.width = m_width;
399 m_renderPassBeginInfo.renderArea.extent.height = m_height;
400 m_renderPassBeginInfo.attachmentCount = m_renderPassClearValues.size();
401 m_renderPassBeginInfo.pAttachmentClearValues = &m_renderPassClearValues[0];
Courtney Goeltzenleuchtera4b278b2014-10-08 08:50:49 -0600402}
403
Mark Lobodzinskic52b7752015-02-18 16:38:17 -0600404
405
Tony Barbourd1c35722015-04-16 15:59:00 -0600406VkDeviceObj::VkDeviceObj(uint32_t id, VkPhysicalDevice obj) :
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600407 vk_testing::Device(obj), id(id)
Chia-I Wufb1459b2014-12-29 15:23:20 +0800408{
409 init();
410
Chia-I Wu999f0482015-07-03 10:32:05 +0800411 props = phy().properties();
412 queue_props = &phy().queue_properties()[0];
Chia-I Wufb1459b2014-12-29 15:23:20 +0800413}
414
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600415VkDeviceObj::VkDeviceObj(uint32_t id,
Courtney Goeltzenleuchter5bac6092015-07-07 11:47:33 -0600416 VkPhysicalDevice obj, std::vector<const char *> &layer_names,
417 std::vector<const char *> &extension_names) :
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600418 vk_testing::Device(obj), id(id)
419{
Courtney Goeltzenleuchter5bac6092015-07-07 11:47:33 -0600420 init(layer_names, extension_names);
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600421
Chia-I Wu999f0482015-07-03 10:32:05 +0800422 props = phy().properties();
423 queue_props = &phy().queue_properties()[0];
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600424}
425
Tony Barbour6918cd52015-04-09 12:58:51 -0600426void VkDeviceObj::get_device_queue()
Chia-I Wufb1459b2014-12-29 15:23:20 +0800427{
428 ASSERT_NE(true, graphics_queues().empty());
Chia-I Wudf12ffd2015-07-03 10:53:18 +0800429 m_queue = graphics_queues()[0]->handle();
Chia-I Wufb1459b2014-12-29 15:23:20 +0800430}
431
Tobin Ehlis3ab1f872015-05-27 14:33:27 -0600432VkDescriptorSetObj::VkDescriptorSetObj(VkDeviceObj *device) :
433 m_device(device), m_nextSlot(0)
Tony Barboure2c58df2014-11-25 13:18:32 -0700434{
Tony Barboure2c58df2014-11-25 13:18:32 -0700435
436}
437
Tony Barbour6918cd52015-04-09 12:58:51 -0600438VkDescriptorSetObj::~VkDescriptorSetObj()
Tony Barboure2c58df2014-11-25 13:18:32 -0700439{
Chia-I Wu11078b02015-01-04 16:27:24 +0800440 delete m_set;
Tony Barboure2c58df2014-11-25 13:18:32 -0700441}
Tony Barbour82c39522014-12-04 14:33:33 -0700442
Tony Barbour6918cd52015-04-09 12:58:51 -0600443int VkDescriptorSetObj::AppendDummy()
Tony Barboure2c58df2014-11-25 13:18:32 -0700444{
Chia-I Wu11078b02015-01-04 16:27:24 +0800445 /* request a descriptor but do not update it */
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600446 VkDescriptorTypeCount tc = {};
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600447 tc.type = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER;
Chia-I Wu11078b02015-01-04 16:27:24 +0800448 tc.count = 1;
449 m_type_counts.push_back(tc);
Tony Barboure2c58df2014-11-25 13:18:32 -0700450
Chia-I Wu11078b02015-01-04 16:27:24 +0800451 return m_nextSlot++;
Tony Barboure2c58df2014-11-25 13:18:32 -0700452}
Tony Barbour82c39522014-12-04 14:33:33 -0700453
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600454int VkDescriptorSetObj::AppendBuffer(VkDescriptorType type, VkConstantBufferObj &constantBuffer)
Tony Barboure2c58df2014-11-25 13:18:32 -0700455{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600456 VkDescriptorTypeCount tc = {};
Chia-I Wu11078b02015-01-04 16:27:24 +0800457 tc.type = type;
458 tc.count = 1;
459 m_type_counts.push_back(tc);
Tony Barboure2c58df2014-11-25 13:18:32 -0700460
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800461 m_writes.push_back(vk_testing::Device::write_descriptor_set(vk_testing::DescriptorSet(),
462 m_nextSlot, 0, type, 1, &constantBuffer.m_descriptorInfo));
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600463
Chia-I Wu11078b02015-01-04 16:27:24 +0800464 return m_nextSlot++;
Tony Barboure2c58df2014-11-25 13:18:32 -0700465}
Tony Barbour82c39522014-12-04 14:33:33 -0700466
Tony Barbour6918cd52015-04-09 12:58:51 -0600467int VkDescriptorSetObj::AppendSamplerTexture( VkSamplerObj* sampler, VkTextureObj* texture)
Tony Barboure2c58df2014-11-25 13:18:32 -0700468{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600469 VkDescriptorTypeCount tc = {};
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600470 tc.type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
Chia-I Wu11078b02015-01-04 16:27:24 +0800471 tc.count = 1;
472 m_type_counts.push_back(tc);
Tony Barboure2c58df2014-11-25 13:18:32 -0700473
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800474 VkDescriptorInfo tmp = texture->m_descriptorInfo;
Chia-I Wu8c721c62015-07-03 11:49:42 +0800475 tmp.sampler = sampler->handle();
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800476 m_imageSamplerDescriptors.push_back(tmp);
Tony Barboure2c58df2014-11-25 13:18:32 -0700477
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800478 m_writes.push_back(vk_testing::Device::write_descriptor_set(vk_testing::DescriptorSet(),
479 m_nextSlot, 0, VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, 1, NULL));
Tony Barboure2c58df2014-11-25 13:18:32 -0700480
Chia-I Wu11078b02015-01-04 16:27:24 +0800481 return m_nextSlot++;
Tony Barboure2c58df2014-11-25 13:18:32 -0700482}
Chia-I Wu11078b02015-01-04 16:27:24 +0800483
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -0500484VkPipelineLayout VkDescriptorSetObj::GetPipelineLayout() const
Tony Barbourb5f4d082014-12-17 10:54:03 -0700485{
Chia-I Wufd46e7d2015-07-03 11:49:42 +0800486 return m_pipeline_layout.handle();
Tony Barbourb5f4d082014-12-17 10:54:03 -0700487}
488
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600489VkDescriptorSet VkDescriptorSetObj::GetDescriptorSetHandle() const
Tony Barbourb5f4d082014-12-17 10:54:03 -0700490{
Chia-I Wuafdfd7f2015-07-03 11:49:42 +0800491 return m_set->handle();
Tony Barbourb5f4d082014-12-17 10:54:03 -0700492}
Tony Barboure2c58df2014-11-25 13:18:32 -0700493
Tony Barbour6918cd52015-04-09 12:58:51 -0600494void VkDescriptorSetObj::CreateVKDescriptorSet(VkCommandBufferObj *cmdBuffer)
Tony Barbour824b7712014-12-18 17:06:21 -0700495{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600496 // create VkDescriptorPool
497 VkDescriptorPoolCreateInfo pool = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600498 pool.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
Chia-I Wu985ba162015-03-26 13:14:16 +0800499 pool.count = m_type_counts.size();
500 pool.pTypeCount = &m_type_counts[0];
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600501 init(*m_device, VK_DESCRIPTOR_POOL_USAGE_ONE_SHOT, 1, pool);
Tony Barbour824b7712014-12-18 17:06:21 -0700502
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600503 // create VkDescriptorSetLayout
504 vector<VkDescriptorSetLayoutBinding> bindings;
Chia-I Wub41393e2015-03-26 15:04:41 +0800505 bindings.resize(m_type_counts.size());
Chia-I Wu11078b02015-01-04 16:27:24 +0800506 for (int i = 0; i < m_type_counts.size(); i++) {
Chia-I Wub41393e2015-03-26 15:04:41 +0800507 bindings[i].descriptorType = m_type_counts[i].type;
Chia-I Wu712bb5d2015-05-25 16:22:52 +0800508 bindings[i].arraySize = m_type_counts[i].count;
Tony Barbourd1c35722015-04-16 15:59:00 -0600509 bindings[i].stageFlags = VK_SHADER_STAGE_ALL;
Chia-I Wu0743e832015-03-27 12:56:09 +0800510 bindings[i].pImmutableSamplers = NULL;
Tony Barboure2c58df2014-11-25 13:18:32 -0700511 }
Chia-I Wuac0f1e72014-12-28 22:32:36 +0800512
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600513 // create VkDescriptorSetLayout
514 VkDescriptorSetLayoutCreateInfo layout = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600515 layout.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO;
Chia-I Wub41393e2015-03-26 15:04:41 +0800516 layout.count = bindings.size();
517 layout.pBinding = &bindings[0];
518
Chia-I Wu41126e52015-03-26 15:27:55 +0800519 m_layout.init(*m_device, layout);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600520 vector<const vk_testing::DescriptorSetLayout *> layouts;
Chia-I Wu41126e52015-03-26 15:27:55 +0800521 layouts.push_back(&m_layout);
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -0500522
523 // create VkPipelineLayout
524 VkPipelineLayoutCreateInfo pipeline_layout = {};
525 pipeline_layout.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO;
526 pipeline_layout.descriptorSetCount = layouts.size();
527 pipeline_layout.pSetLayouts = NULL;
528
529 m_pipeline_layout.init(*m_device, pipeline_layout, layouts);
Tony Barboure2c58df2014-11-25 13:18:32 -0700530
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600531 // create VkDescriptorSet
Mark Lobodzinski40f7f402015-04-16 11:44:05 -0500532 m_set = alloc_sets(*m_device, VK_DESCRIPTOR_SET_USAGE_STATIC, m_layout);
Chia-I Wu11078b02015-01-04 16:27:24 +0800533
Chia-I Wu41126e52015-03-26 15:27:55 +0800534 // build the update array
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800535 size_t imageSamplerCount = 0;
536 for (std::vector<VkWriteDescriptorSet>::iterator it = m_writes.begin();
537 it != m_writes.end(); it++) {
Chia-I Wuafdfd7f2015-07-03 11:49:42 +0800538 it->destSet = m_set->handle();
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800539 if (it->descriptorType == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER)
540 it->pDescriptors = &m_imageSamplerDescriptors[imageSamplerCount++];
Chia-I Wu11078b02015-01-04 16:27:24 +0800541 }
Chia-I Wu11078b02015-01-04 16:27:24 +0800542
543 // do the updates
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800544 m_device->update_descriptor_sets(m_writes);
Tony Barbour25ef8a62014-12-03 13:59:18 -0700545}
Tony Barboure2c58df2014-11-25 13:18:32 -0700546
Tony Barbour6918cd52015-04-09 12:58:51 -0600547VkImageObj::VkImageObj(VkDeviceObj *dev)
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800548{
549 m_device = dev;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800550 m_descriptorInfo.imageView = VK_NULL_HANDLE;
551 m_descriptorInfo.imageLayout = VK_IMAGE_LAYOUT_GENERAL;
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800552}
553
Tony Barbour6918cd52015-04-09 12:58:51 -0600554void VkImageObj::ImageMemoryBarrier(
555 VkCommandBufferObj *cmd_buf,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600556 VkImageAspect aspect,
557 VkFlags output_mask /*=
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600558 VK_MEMORY_OUTPUT_HOST_WRITE_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600559 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
560 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
561 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
562 VK_MEMORY_OUTPUT_COPY_BIT*/,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600563 VkFlags input_mask /*=
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600564 VK_MEMORY_INPUT_HOST_READ_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600565 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
566 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
567 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
568 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
569 VK_MEMORY_INPUT_SHADER_READ_BIT |
570 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
571 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
572 VK_MEMORY_INPUT_COPY_BIT*/,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600573 VkImageLayout image_layout)
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600574{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600575 const VkImageSubresourceRange subresourceRange = subresource_range(aspect, 0, 1, 0, 1);
576 VkImageMemoryBarrier barrier;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600577 barrier = image_memory_barrier(output_mask, input_mask, layout(), image_layout,
578 subresourceRange);
579
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600580 VkImageMemoryBarrier *pmemory_barrier = &barrier;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600581
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600582 VkPipelineStageFlags src_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
583 VkPipelineStageFlags dest_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600584
585 // write barrier to the command buffer
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -0600586 vkCmdPipelineBarrier(cmd_buf->handle(), src_stages, dest_stages, false, 1, (const void * const*)&pmemory_barrier);
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600587}
588
Tony Barbour6918cd52015-04-09 12:58:51 -0600589void VkImageObj::SetLayout(VkCommandBufferObj *cmd_buf,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600590 VkImageAspect aspect,
591 VkImageLayout image_layout)
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600592{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600593 VkFlags output_mask, input_mask;
594 const VkFlags all_cache_outputs =
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600595 VK_MEMORY_OUTPUT_HOST_WRITE_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600596 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
597 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
598 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600599 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600600 const VkFlags all_cache_inputs =
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600601 VK_MEMORY_INPUT_HOST_READ_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600602 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
603 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
604 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
605 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
606 VK_MEMORY_INPUT_SHADER_READ_BIT |
607 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
608 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600609 VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600610
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800611 if (image_layout == m_descriptorInfo.imageLayout) {
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600612 return;
613 }
614
615 switch (image_layout) {
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600616 case VK_IMAGE_LAYOUT_TRANSFER_SOURCE_OPTIMAL:
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600617 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
618 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600619 break;
620
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600621 case VK_IMAGE_LAYOUT_TRANSFER_DESTINATION_OPTIMAL:
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600622 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
623 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600624 break;
625
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600626 case VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL:
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600627 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
628 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600629 break;
630
631 default:
632 output_mask = all_cache_outputs;
633 input_mask = all_cache_inputs;
634 break;
635 }
636
637 ImageMemoryBarrier(cmd_buf, aspect, output_mask, input_mask, image_layout);
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800638 m_descriptorInfo.imageLayout = image_layout;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600639}
640
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600641void VkImageObj::SetLayout(VkImageAspect aspect,
642 VkImageLayout image_layout)
Courtney Goeltzenleuchterbe4f0cd2015-04-07 08:57:30 -0600643{
Tony Barbourf20f87b2015-04-22 09:02:32 -0600644 VkResult U_ASSERT_ONLY err;
Tony Barbour3d69c9e2015-05-20 16:53:31 -0600645
646 if (image_layout == m_descriptorInfo.imageLayout) {
647 return;
648 }
649
Tony Barbour6918cd52015-04-09 12:58:51 -0600650 VkCommandBufferObj cmd_buf(m_device);
Courtney Goeltzenleuchterbe4f0cd2015-04-07 08:57:30 -0600651
652 /* Build command buffer to set image layout in the driver */
653 err = cmd_buf.BeginCommandBuffer();
654 assert(!err);
655
656 SetLayout(&cmd_buf, aspect, image_layout);
657
658 err = cmd_buf.EndCommandBuffer();
659 assert(!err);
660
661 cmd_buf.QueueCommandBuffer();
662}
663
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600664bool VkImageObj::IsCompatible(VkFlags usage, VkFlags features)
Tony Barbour579f7802015-04-03 15:11:43 -0600665{
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600666 if ((usage & VK_IMAGE_USAGE_SAMPLED_BIT) &&
Tony Barbourd1c35722015-04-16 15:59:00 -0600667 !(features & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT))
Tony Barbour579f7802015-04-03 15:11:43 -0600668 return false;
Courtney Goeltzenleuchterbe4f0cd2015-04-07 08:57:30 -0600669
Tony Barbour579f7802015-04-03 15:11:43 -0600670 return true;
671}
672
Tony Barbour6918cd52015-04-09 12:58:51 -0600673void VkImageObj::init(uint32_t w, uint32_t h,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600674 VkFormat fmt, VkFlags usage,
Tony Barbour4c97d7a2015-04-22 15:10:33 -0600675 VkImageTiling requested_tiling,
676 VkMemoryPropertyFlags reqs)
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800677{
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600678 uint32_t mipCount;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600679 VkFormatProperties image_fmt;
680 VkImageTiling tiling;
681 VkResult err;
Tony Barbour579f7802015-04-03 15:11:43 -0600682
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800683 mipCount = 0;
684
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600685 uint32_t _w = w;
686 uint32_t _h = h;
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800687 while( ( _w > 0 ) || ( _h > 0 ) )
688 {
689 _w >>= 1;
690 _h >>= 1;
691 mipCount++;
692 }
693
Courtney Goeltzenleuchter2caec862015-07-12 12:52:09 -0600694 err = vkGetPhysicalDeviceFormatProperties(m_device->phy().handle(), fmt, &image_fmt);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600695 ASSERT_VK_SUCCESS(err);
Tony Barbour579f7802015-04-03 15:11:43 -0600696
Tony Barbourd1c35722015-04-16 15:59:00 -0600697 if (requested_tiling == VK_IMAGE_TILING_LINEAR) {
Tony Barbour579f7802015-04-03 15:11:43 -0600698 if (IsCompatible(usage, image_fmt.linearTilingFeatures)) {
Tony Barbourd1c35722015-04-16 15:59:00 -0600699 tiling = VK_IMAGE_TILING_LINEAR;
Tony Barbour579f7802015-04-03 15:11:43 -0600700 } else if (IsCompatible(usage, image_fmt.optimalTilingFeatures)) {
Tony Barbourd1c35722015-04-16 15:59:00 -0600701 tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barbour579f7802015-04-03 15:11:43 -0600702 } else {
703 ASSERT_TRUE(false) << "Error: Cannot find requested tiling configuration";
704 }
705 } else if (IsCompatible(usage, image_fmt.optimalTilingFeatures)) {
Tony Barbourd1c35722015-04-16 15:59:00 -0600706 tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barbour579f7802015-04-03 15:11:43 -0600707 } else if (IsCompatible(usage, image_fmt.linearTilingFeatures)) {
Tony Barbourd1c35722015-04-16 15:59:00 -0600708 tiling = VK_IMAGE_TILING_LINEAR;
Tony Barbour579f7802015-04-03 15:11:43 -0600709 } else {
710 ASSERT_TRUE(false) << "Error: Cannot find requested tiling configuration";
711 }
712
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600713 VkImageCreateInfo imageCreateInfo = vk_testing::Image::create_info();
Tony Barbourd1c35722015-04-16 15:59:00 -0600714 imageCreateInfo.imageType = VK_IMAGE_TYPE_2D;
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800715 imageCreateInfo.format = fmt;
716 imageCreateInfo.extent.width = w;
717 imageCreateInfo.extent.height = h;
718 imageCreateInfo.mipLevels = mipCount;
719 imageCreateInfo.tiling = tiling;
720
721 imageCreateInfo.usage = usage;
722
Tony Barbour4c97d7a2015-04-22 15:10:33 -0600723 vk_testing::Image::init(*m_device, imageCreateInfo, reqs);
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800724
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -0600725 if (usage & VK_IMAGE_USAGE_SAMPLED_BIT) {
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600726 SetLayout(VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL);
Courtney Goeltzenleuchterbe4f0cd2015-04-07 08:57:30 -0600727 } else {
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600728 SetLayout(VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_GENERAL);
Courtney Goeltzenleuchterbe4f0cd2015-04-07 08:57:30 -0600729 }
Chia-I Wua6bc0ce2014-12-29 14:38:28 +0800730}
731
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600732VkResult VkImageObj::CopyImage(VkImageObj &src_image)
Tony Barbour5dc515d2015-04-01 17:47:06 -0600733{
Tony Barbourf20f87b2015-04-22 09:02:32 -0600734 VkResult U_ASSERT_ONLY err;
Tony Barbour6918cd52015-04-09 12:58:51 -0600735 VkCommandBufferObj cmd_buf(m_device);
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600736 VkImageLayout src_image_layout, dest_image_layout;
Tony Barbour5dc515d2015-04-01 17:47:06 -0600737
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600738 /* Build command buffer to copy staging texture to usable texture */
739 err = cmd_buf.BeginCommandBuffer();
Tony Barbour5dc515d2015-04-01 17:47:06 -0600740 assert(!err);
741
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600742 /* TODO: Can we determine image aspect from image object? */
743 src_image_layout = src_image.layout();
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600744 src_image.SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_TRANSFER_SOURCE_OPTIMAL);
Tony Barbour5dc515d2015-04-01 17:47:06 -0600745
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600746 dest_image_layout = this->layout();
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600747 this->SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_TRANSFER_DESTINATION_OPTIMAL);
Tony Barbour1c45ce02015-03-27 17:03:18 -0600748
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600749 VkImageCopy copy_region = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600750 copy_region.srcSubresource.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour5dc515d2015-04-01 17:47:06 -0600751 copy_region.srcSubresource.arraySlice = 0;
752 copy_region.srcSubresource.mipLevel = 0;
753 copy_region.srcOffset.x = 0;
754 copy_region.srcOffset.y = 0;
755 copy_region.srcOffset.z = 0;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600756 copy_region.destSubresource.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour5dc515d2015-04-01 17:47:06 -0600757 copy_region.destSubresource.arraySlice = 0;
758 copy_region.destSubresource.mipLevel = 0;
759 copy_region.destOffset.x = 0;
760 copy_region.destOffset.y = 0;
761 copy_region.destOffset.z = 0;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600762 copy_region.extent = src_image.extent();
Tony Barbour5dc515d2015-04-01 17:47:06 -0600763
Chia-I Wube2b9172015-07-03 11:49:42 +0800764 vkCmdCopyImage(cmd_buf.handle(),
Chia-I Wu681d7a02015-07-03 13:44:34 +0800765 src_image.handle(), src_image.layout(),
766 handle(), layout(),
Tony Barbour1c45ce02015-03-27 17:03:18 -0600767 1, &copy_region);
Tony Barbour5dc515d2015-04-01 17:47:06 -0600768
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600769 src_image.SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, src_image_layout);
Tony Barbour5dc515d2015-04-01 17:47:06 -0600770
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600771 this->SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, dest_image_layout);
Tony Barbour1c45ce02015-03-27 17:03:18 -0600772
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600773 err = cmd_buf.EndCommandBuffer();
Tony Barbour5dc515d2015-04-01 17:47:06 -0600774 assert(!err);
775
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600776 cmd_buf.QueueCommandBuffer();
Tony Barbour5dc515d2015-04-01 17:47:06 -0600777
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600778 return VK_SUCCESS;
Tony Barbour5dc515d2015-04-01 17:47:06 -0600779}
780
Tony Barbour6918cd52015-04-09 12:58:51 -0600781VkTextureObj::VkTextureObj(VkDeviceObj *device, uint32_t *colors)
782 :VkImageObj(device)
Tony Barboure2c58df2014-11-25 13:18:32 -0700783{
784 m_device = device;
Tony Barbourd1c35722015-04-16 15:59:00 -0600785 const VkFormat tex_format = VK_FORMAT_B8G8R8A8_UNORM;
Tony Barbourebc093f2015-04-01 16:38:10 -0600786 uint32_t tex_colors[2] = { 0xffff0000, 0xff00ff00 };
Tony Barbour5dc515d2015-04-01 17:47:06 -0600787 void *data;
788 int32_t x, y;
Tony Barbour6918cd52015-04-09 12:58:51 -0600789 VkImageObj stagingImage(device);
Tony Barbour4c97d7a2015-04-22 15:10:33 -0600790 VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
Tony Barbour5dc515d2015-04-01 17:47:06 -0600791
Cody Northropbb6fdb32015-06-17 08:28:19 -0600792 stagingImage.init(16, 16, tex_format, VK_IMAGE_USAGE_SAMPLED_BIT, VK_IMAGE_TILING_LINEAR, reqs);
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600793 VkSubresourceLayout layout = stagingImage.subresource_layout(subresource(VK_IMAGE_ASPECT_COLOR, 0, 0));
Tony Barbourebc093f2015-04-01 16:38:10 -0600794
795 if (colors == NULL)
796 colors = tex_colors;
Tony Barboure2c58df2014-11-25 13:18:32 -0700797
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800798 memset(&m_descriptorInfo,0,sizeof(m_descriptorInfo));
Tony Barboure2c58df2014-11-25 13:18:32 -0700799
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600800 VkImageViewCreateInfo view = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600801 view.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
Tony Barbourbdf0a312015-04-01 17:10:07 -0600802 view.pNext = NULL;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600803 view.image = VK_NULL_HANDLE;
Tony Barbourd1c35722015-04-16 15:59:00 -0600804 view.viewType = VK_IMAGE_VIEW_TYPE_2D;
Tony Barbour5dc515d2015-04-01 17:47:06 -0600805 view.format = tex_format;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600806 view.channels.r = VK_CHANNEL_SWIZZLE_R;
807 view.channels.g = VK_CHANNEL_SWIZZLE_G;
808 view.channels.b = VK_CHANNEL_SWIZZLE_B;
809 view.channels.a = VK_CHANNEL_SWIZZLE_A;
810 view.subresourceRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbourbdf0a312015-04-01 17:10:07 -0600811 view.subresourceRange.baseMipLevel = 0;
812 view.subresourceRange.mipLevels = 1;
813 view.subresourceRange.baseArraySlice = 0;
814 view.subresourceRange.arraySize = 1;
Tony Barboure2c58df2014-11-25 13:18:32 -0700815
Tony Barboure2c58df2014-11-25 13:18:32 -0700816 /* create image */
Tony Barbourd1c35722015-04-16 15:59:00 -0600817 init(16, 16, tex_format, VK_IMAGE_USAGE_SAMPLED_BIT, VK_IMAGE_TILING_OPTIMAL);
Tony Barboure2c58df2014-11-25 13:18:32 -0700818
819 /* create image view */
Chia-I Wu681d7a02015-07-03 13:44:34 +0800820 view.image = handle();
Chia-I Wu13a3aa82014-12-28 15:55:09 +0800821 m_textureView.init(*m_device, view);
Chia-I Wu3158bf32015-07-03 11:49:42 +0800822 m_descriptorInfo.imageView = m_textureView.handle();
Tony Barboure2c58df2014-11-25 13:18:32 -0700823
Chia-I Wu681d7a02015-07-03 13:44:34 +0800824 data = stagingImage.MapMemory();
Tony Barboure2c58df2014-11-25 13:18:32 -0700825
Chia-I Wu13a3aa82014-12-28 15:55:09 +0800826 for (y = 0; y < extent().height; y++) {
Tony Barboure2c58df2014-11-25 13:18:32 -0700827 uint32_t *row = (uint32_t *) ((char *) data + layout.rowPitch * y);
Chia-I Wu13a3aa82014-12-28 15:55:09 +0800828 for (x = 0; x < extent().width; x++)
Tony Barbourebc093f2015-04-01 16:38:10 -0600829 row[x] = colors[(x & 1) ^ (y & 1)];
Tony Barboure2c58df2014-11-25 13:18:32 -0700830 }
Chia-I Wu681d7a02015-07-03 13:44:34 +0800831 stagingImage.UnmapMemory();
Tony Barbour6918cd52015-04-09 12:58:51 -0600832 VkImageObj::CopyImage(stagingImage);
Tony Barboure2c58df2014-11-25 13:18:32 -0700833}
Tony Barbour82c39522014-12-04 14:33:33 -0700834
Tony Barbour6918cd52015-04-09 12:58:51 -0600835VkSamplerObj::VkSamplerObj(VkDeviceObj *device)
Tony Barboure2c58df2014-11-25 13:18:32 -0700836{
Tony Barboure2c58df2014-11-25 13:18:32 -0700837 m_device = device;
Tony Barboure2c58df2014-11-25 13:18:32 -0700838
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600839 VkSamplerCreateInfo samplerCreateInfo;
Chia-I Wue9864b52014-12-28 16:32:24 +0800840 memset(&samplerCreateInfo,0,sizeof(samplerCreateInfo));
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600841 samplerCreateInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO;
842 samplerCreateInfo.magFilter = VK_TEX_FILTER_NEAREST;
843 samplerCreateInfo.minFilter = VK_TEX_FILTER_NEAREST;
Tony Barbourd1c35722015-04-16 15:59:00 -0600844 samplerCreateInfo.mipMode = VK_TEX_MIPMAP_MODE_BASE;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600845 samplerCreateInfo.addressU = VK_TEX_ADDRESS_WRAP;
846 samplerCreateInfo.addressV = VK_TEX_ADDRESS_WRAP;
847 samplerCreateInfo.addressW = VK_TEX_ADDRESS_WRAP;
Chia-I Wue9864b52014-12-28 16:32:24 +0800848 samplerCreateInfo.mipLodBias = 0.0;
Tony Barbour7ea6aa22015-05-22 09:44:58 -0600849 samplerCreateInfo.maxAnisotropy = 0;
Tony Barbourd1c35722015-04-16 15:59:00 -0600850 samplerCreateInfo.compareOp = VK_COMPARE_OP_NEVER;
Chia-I Wue9864b52014-12-28 16:32:24 +0800851 samplerCreateInfo.minLod = 0.0;
852 samplerCreateInfo.maxLod = 0.0;
Tony Barbour26b17f82015-06-25 16:56:44 -0600853 samplerCreateInfo.borderColor = VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE;
Tony Barboure2c58df2014-11-25 13:18:32 -0700854
Chia-I Wue9864b52014-12-28 16:32:24 +0800855 init(*m_device, samplerCreateInfo);
Tony Barbourf325bf12014-12-03 15:59:38 -0700856}
Tony Barboure2c58df2014-11-25 13:18:32 -0700857
Courtney Goeltzenleuchter3b0a8152014-12-04 15:18:47 -0700858/*
859 * Basic ConstantBuffer constructor. Then use create methods to fill in the details.
860 */
Tony Barbour6918cd52015-04-09 12:58:51 -0600861VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device)
Courtney Goeltzenleuchter3b0a8152014-12-04 15:18:47 -0700862{
863 m_device = device;
Tony Barbour38422802014-12-10 14:36:31 -0700864 m_commandBuffer = 0;
Courtney Goeltzenleuchter3b0a8152014-12-04 15:18:47 -0700865
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800866 memset(&m_descriptorInfo,0,sizeof(m_descriptorInfo));
Courtney Goeltzenleuchter3b0a8152014-12-04 15:18:47 -0700867}
868
Tony Barbour6918cd52015-04-09 12:58:51 -0600869VkConstantBufferObj::~VkConstantBufferObj()
Tony Barbour044703b2015-03-26 12:37:52 -0600870{
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -0600871 // TODO: Should we call QueueRemoveMemReference for the constant buffer memory here?
Tony Barbour044703b2015-03-26 12:37:52 -0600872 if (m_commandBuffer) {
873 delete m_commandBuffer;
874 }
875}
876
Tony Barbour6918cd52015-04-09 12:58:51 -0600877VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, int constantCount, int constantSize, const void* data)
Tony Barboure2c58df2014-11-25 13:18:32 -0700878{
Tony Barboure2c58df2014-11-25 13:18:32 -0700879 m_device = device;
Chia-I Wua07fee62014-12-28 15:26:08 +0800880 m_commandBuffer = 0;
881
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800882 memset(&m_descriptorInfo,0,sizeof(m_descriptorInfo));
Tony Barboure2c58df2014-11-25 13:18:32 -0700883 m_numVertices = constantCount;
884 m_stride = constantSize;
885
Tony Barbour4c97d7a2015-04-22 15:10:33 -0600886 VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
Chia-I Wua07fee62014-12-28 15:26:08 +0800887 const size_t allocationSize = constantCount * constantSize;
Cody Northrop7fb43862015-06-22 14:56:14 -0600888 init_as_src_and_dst(*m_device, allocationSize, reqs);
Tony Barboure2c58df2014-11-25 13:18:32 -0700889
Chia-I Wu681d7a02015-07-03 13:44:34 +0800890 void *pData = memory().map();
Chia-I Wua07fee62014-12-28 15:26:08 +0800891 memcpy(pData, data, allocationSize);
Chia-I Wu681d7a02015-07-03 13:44:34 +0800892 memory().unmap();
Tony Barboure2c58df2014-11-25 13:18:32 -0700893
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800894 // set up the buffer view for the constant buffer
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600895 VkBufferViewCreateInfo view_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600896 view_info.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO;
Chia-I Wu681d7a02015-07-03 13:44:34 +0800897 view_info.buffer = handle();
Tony Barbourd1c35722015-04-16 15:59:00 -0600898 view_info.viewType = VK_BUFFER_VIEW_TYPE_RAW;
Chia-I Wu1a28fe02015-01-01 07:55:04 +0800899 view_info.offset = 0;
900 view_info.range = allocationSize;
901 m_bufferView.init(*m_device, view_info);
902
Chia-I Wu3158bf32015-07-03 11:49:42 +0800903 this->m_descriptorInfo.bufferView = m_bufferView.handle();
Tony Barboure2c58df2014-11-25 13:18:32 -0700904}
Tony Barbour82c39522014-12-04 14:33:33 -0700905
Tony Barbourd1c35722015-04-16 15:59:00 -0600906void VkConstantBufferObj::Bind(VkCmdBuffer cmdBuffer, VkDeviceSize offset, uint32_t binding)
Courtney Goeltzenleuchter37640302014-12-04 15:26:56 -0700907{
Chia-I Wu681d7a02015-07-03 13:44:34 +0800908 vkCmdBindVertexBuffers(cmdBuffer, binding, 1, &handle(), &offset);
Courtney Goeltzenleuchter37640302014-12-04 15:26:56 -0700909}
910
911
Tony Barbour6918cd52015-04-09 12:58:51 -0600912void VkConstantBufferObj::BufferMemoryBarrier(
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600913 VkFlags outputMask /*=
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600914 VK_MEMORY_OUTPUT_HOST_WRITE_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600915 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
916 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
917 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
918 VK_MEMORY_OUTPUT_COPY_BIT*/,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600919 VkFlags inputMask /*=
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -0600920 VK_MEMORY_INPUT_HOST_READ_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600921 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
922 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
923 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
924 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
925 VK_MEMORY_INPUT_SHADER_READ_BIT |
926 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
927 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
928 VK_MEMORY_INPUT_COPY_BIT*/)
Tony Barboure2c58df2014-11-25 13:18:32 -0700929{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600930 VkResult err = VK_SUCCESS;
Tony Barbour38422802014-12-10 14:36:31 -0700931
Tony Barbour38422802014-12-10 14:36:31 -0700932 if (!m_commandBuffer)
933 {
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600934 m_fence.init(*m_device, vk_testing::Fence::create_info());
Tony Barbour38422802014-12-10 14:36:31 -0700935
Tony Barbour6918cd52015-04-09 12:58:51 -0600936 m_commandBuffer = new VkCommandBufferObj(m_device);
Tony Barbour38422802014-12-10 14:36:31 -0700937 }
938 else
939 {
Chia-I Wua07fee62014-12-28 15:26:08 +0800940 m_device->wait(m_fence);
Tony Barbour38422802014-12-10 14:36:31 -0700941 }
942
Tony Barboure2c58df2014-11-25 13:18:32 -0700943 // open the command buffer
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600944 VkCmdBufferBeginInfo cmd_buf_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600945 cmd_buf_info.sType = VK_STRUCTURE_TYPE_CMD_BUFFER_BEGIN_INFO;
Tony Barbourbdf0a312015-04-01 17:10:07 -0600946 cmd_buf_info.pNext = NULL;
947 cmd_buf_info.flags = 0;
948
Jon Ashburnc4164b12014-12-31 17:10:47 -0700949 err = m_commandBuffer->BeginCommandBuffer(&cmd_buf_info);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600950 ASSERT_VK_SUCCESS(err);
Tony Barboure2c58df2014-11-25 13:18:32 -0700951
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600952 VkBufferMemoryBarrier memory_barrier =
Mike Stroyanfb80d5f2014-12-04 11:08:39 +0000953 buffer_memory_barrier(outputMask, inputMask, 0, m_numVertices * m_stride);
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600954 VkBufferMemoryBarrier *pmemory_barrier = &memory_barrier;
Tony Barboure2c58df2014-11-25 13:18:32 -0700955
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600956 VkPipelineStageFlags src_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
957 VkPipelineStageFlags dest_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +0000958
959 // write barrier to the command buffer
Tony Barbour0b2cfb22015-06-29 16:20:35 -0600960 m_commandBuffer->PipelineBarrier(src_stages, dest_stages, false, 1, (const void **)&pmemory_barrier);
Tony Barboure2c58df2014-11-25 13:18:32 -0700961
962 // finish recording the command buffer
Tony Barbour471338d2014-12-10 17:28:39 -0700963 err = m_commandBuffer->EndCommandBuffer();
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600964 ASSERT_VK_SUCCESS(err);
Tony Barboure2c58df2014-11-25 13:18:32 -0700965
Tony Barboure2c58df2014-11-25 13:18:32 -0700966 // submit the command buffer to the universal queue
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600967 VkCmdBuffer bufferArray[1];
Tony Barbour471338d2014-12-10 17:28:39 -0700968 bufferArray[0] = m_commandBuffer->GetBufferHandle();
Chia-I Wud9e8e822015-07-03 11:45:55 +0800969 err = vkQueueSubmit( m_device->m_queue, 1, bufferArray, m_fence.handle() );
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600970 ASSERT_VK_SUCCESS(err);
Tony Barboure2c58df2014-11-25 13:18:32 -0700971}
972
Tony Barbour6918cd52015-04-09 12:58:51 -0600973VkIndexBufferObj::VkIndexBufferObj(VkDeviceObj *device)
974 : VkConstantBufferObj(device)
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700975{
976
977}
978
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600979void VkIndexBufferObj::CreateAndInitBuffer(int numIndexes, VkIndexType indexType, const void* data)
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700980{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600981 VkFormat viewFormat;
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700982
983 m_numVertices = numIndexes;
984 m_indexType = indexType;
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700985 switch (indexType) {
Tony Barbourd1c35722015-04-16 15:59:00 -0600986 case VK_INDEX_TYPE_UINT16:
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700987 m_stride = 2;
Tony Barbourd1c35722015-04-16 15:59:00 -0600988 viewFormat = VK_FORMAT_R16_UINT;
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700989 break;
Tony Barbourd1c35722015-04-16 15:59:00 -0600990 case VK_INDEX_TYPE_UINT32:
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700991 m_stride = 4;
Tony Barbourd1c35722015-04-16 15:59:00 -0600992 viewFormat = VK_FORMAT_R32_UINT;
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700993 break;
Chia-I Wub4c2aa42014-12-15 23:50:11 +0800994 default:
995 assert(!"unknown index type");
Tony Barbourf20f87b2015-04-22 09:02:32 -0600996 m_stride = 2;
997 viewFormat = VK_FORMAT_R16_UINT;
Chia-I Wub4c2aa42014-12-15 23:50:11 +0800998 break;
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -0700999 }
1000
Chia-I Wua07fee62014-12-28 15:26:08 +08001001 const size_t allocationSize = numIndexes * m_stride;
Tony Barbour4c97d7a2015-04-22 15:10:33 -06001002 VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
Cody Northrop7fb43862015-06-22 14:56:14 -06001003 init_as_src_and_dst(*m_device, allocationSize, reqs);
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -07001004
Chia-I Wu681d7a02015-07-03 13:44:34 +08001005 void *pData = memory().map();
Chia-I Wua07fee62014-12-28 15:26:08 +08001006 memcpy(pData, data, allocationSize);
Chia-I Wu681d7a02015-07-03 13:44:34 +08001007 memory().unmap();
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -07001008
Chia-I Wu1a28fe02015-01-01 07:55:04 +08001009 // set up the buffer view for the constant buffer
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -06001010 VkBufferViewCreateInfo view_info = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001011 view_info.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO;
Chia-I Wu681d7a02015-07-03 13:44:34 +08001012 view_info.buffer = handle();
Tony Barbourd1c35722015-04-16 15:59:00 -06001013 view_info.viewType = VK_BUFFER_VIEW_TYPE_FORMATTED;
Jeremy Hayesa058eee2015-01-23 08:51:43 -07001014 view_info.format = viewFormat;
Chia-I Wu1a28fe02015-01-01 07:55:04 +08001015 view_info.offset = 0;
1016 view_info.range = allocationSize;
1017 m_bufferView.init(*m_device, view_info);
1018
Chia-I Wu3158bf32015-07-03 11:49:42 +08001019 this->m_descriptorInfo.bufferView = m_bufferView.handle();
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -07001020}
1021
Tony Barbourd1c35722015-04-16 15:59:00 -06001022void VkIndexBufferObj::Bind(VkCmdBuffer cmdBuffer, VkDeviceSize offset)
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -07001023{
Chia-I Wu681d7a02015-07-03 13:44:34 +08001024 vkCmdBindIndexBuffer(cmdBuffer, handle(), offset, m_indexType);
Courtney Goeltzenleuchter8a785932014-12-04 15:24:05 -07001025}
Tony Barboure2c58df2014-11-25 13:18:32 -07001026
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001027VkIndexType VkIndexBufferObj::GetIndexType()
Tony Barbouraf1f9192014-12-17 10:57:58 -07001028{
1029 return m_indexType;
1030}
1031
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001032VkPipelineShaderStageCreateInfo* VkShaderObj::GetStageCreateInfo()
Tony Barboure2c58df2014-11-25 13:18:32 -07001033{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001034 VkPipelineShaderStageCreateInfo *stageInfo = (VkPipelineShaderStageCreateInfo*) calloc( 1,sizeof(VkPipelineShaderStageCreateInfo) );
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001035 stageInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
1036 stageInfo->stage = m_stage;
Chia-I Wu4d0c7922015-07-03 11:49:42 +08001037 stageInfo->shader = handle();
Tony Barboure2c58df2014-11-25 13:18:32 -07001038
Tony Barboure2c58df2014-11-25 13:18:32 -07001039 return stageInfo;
1040}
1041
Tony Barbourd1c35722015-04-16 15:59:00 -06001042VkShaderObj::VkShaderObj(VkDeviceObj *device, const char * shader_code, VkShaderStage stage, VkRenderFramework *framework)
Tony Barboure2c58df2014-11-25 13:18:32 -07001043{
Tony Barbourb5d2c942015-07-14 13:34:05 -06001044 VkResult U_ASSERT_ONLY err = VK_SUCCESS;
Cody Northrop3bfd27c2015-03-17 15:55:58 -06001045 std::vector<unsigned int> spv;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001046 VkShaderCreateInfo createInfo;
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001047 VkShaderModuleCreateInfo moduleCreateInfo;
1048 vk_testing::ShaderModule module;
Tony Barboure2c58df2014-11-25 13:18:32 -07001049 size_t shader_len;
1050
1051 m_stage = stage;
1052 m_device = device;
1053
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001054 moduleCreateInfo.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO;
1055 moduleCreateInfo.pNext = NULL;
1056
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001057 createInfo.sType = VK_STRUCTURE_TYPE_SHADER_CREATE_INFO;
Tony Barboure2c58df2014-11-25 13:18:32 -07001058 createInfo.pNext = NULL;
1059
Cody Northrop50a2a4b2015-06-03 16:49:20 -06001060 if (framework->m_use_glsl) {
Tony Barboure2c58df2014-11-25 13:18:32 -07001061
1062 shader_len = strlen(shader_code);
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001063 moduleCreateInfo.codeSize = 3 * sizeof(uint32_t) + shader_len + 1;
1064 moduleCreateInfo.pCode = malloc(moduleCreateInfo.codeSize);
1065 moduleCreateInfo.flags = 0;
Tony Barboure2c58df2014-11-25 13:18:32 -07001066
Tony Barbourd1c35722015-04-16 15:59:00 -06001067 /* try version 0 first: VkShaderStage followed by GLSL */
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001068 ((uint32_t *) moduleCreateInfo.pCode)[0] = ICD_SPV_MAGIC;
1069 ((uint32_t *) moduleCreateInfo.pCode)[1] = 0;
1070 ((uint32_t *) moduleCreateInfo.pCode)[2] = stage;
1071 memcpy(((uint32_t *) moduleCreateInfo.pCode + 3), shader_code, shader_len + 1);
Tony Barboure2c58df2014-11-25 13:18:32 -07001072
Cody Northrop50a2a4b2015-06-03 16:49:20 -06001073 } else {
Tony Barboure2c58df2014-11-25 13:18:32 -07001074
Cody Northrop3bfd27c2015-03-17 15:55:58 -06001075 // Use Reference GLSL to SPV compiler
1076 framework->GLSLtoSPV(stage, shader_code, spv);
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001077 moduleCreateInfo.pCode = spv.data();
1078 moduleCreateInfo.codeSize = spv.size() * sizeof(unsigned int);
1079 moduleCreateInfo.flags = 0;
Chia-I Wubabc0fd2014-12-29 14:14:03 +08001080 }
Cody Northrop475663c2015-04-15 11:19:06 -06001081
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001082 err = module.init_try(*m_device, moduleCreateInfo);
1083 assert(VK_SUCCESS == err);
Cody Northrop50a2a4b2015-06-03 16:49:20 -06001084
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001085 createInfo.sType = VK_STRUCTURE_TYPE_SHADER_CREATE_INFO;
1086 createInfo.pNext = NULL;
Chia-I Wu4d0c7922015-07-03 11:49:42 +08001087 createInfo.module = module.handle();
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001088 createInfo.pName = "main";
1089 createInfo.flags = 0;
1090
1091 err = init_try(*m_device, createInfo);
Cody Northrop475663c2015-04-15 11:19:06 -06001092 assert(VK_SUCCESS == err);
Tony Barbourf325bf12014-12-03 15:59:38 -07001093}
Tony Barbour82c39522014-12-04 14:33:33 -07001094
Tony Barbour6918cd52015-04-09 12:58:51 -06001095VkPipelineObj::VkPipelineObj(VkDeviceObj *device)
Tony Barboure2c58df2014-11-25 13:18:32 -07001096{
Tony Barboure2c58df2014-11-25 13:18:32 -07001097 m_device = device;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001098
1099 m_vi_state.pNext = VK_NULL_HANDLE;
1100 m_vi_state.bindingCount = 0;
1101 m_vi_state.pVertexBindingDescriptions = VK_NULL_HANDLE;
1102 m_vi_state.attributeCount = 0;
1103 m_vi_state.pVertexAttributeDescriptions = VK_NULL_HANDLE;
1104
Tony Barboure2c58df2014-11-25 13:18:32 -07001105 m_vertexBufferCount = 0;
1106
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001107 m_ia_state.sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001108 m_ia_state.pNext = VK_NULL_HANDLE;
Tony Barbourd1c35722015-04-16 15:59:00 -06001109 m_ia_state.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001110 m_ia_state.primitiveRestartEnable = VK_FALSE;
Tony Barboure2c58df2014-11-25 13:18:32 -07001111
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001112 m_rs_state.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTER_STATE_CREATE_INFO;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001113 m_rs_state.pNext = VK_NULL_HANDLE;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001114 m_rs_state.depthClipEnable = VK_FALSE;
1115 m_rs_state.rasterizerDiscardEnable = VK_FALSE;
Tony Barbourd1c35722015-04-16 15:59:00 -06001116 m_rs_state.fillMode = VK_FILL_MODE_SOLID;
Courtney Goeltzenleuchter43fb2c72015-04-30 17:44:12 -06001117 m_rs_state.cullMode = VK_CULL_MODE_BACK;
1118 m_rs_state.frontFace = VK_FRONT_FACE_CW;
Tony Barboure2c58df2014-11-25 13:18:32 -07001119
Tony Barboure2c58df2014-11-25 13:18:32 -07001120 memset(&m_cb_state,0,sizeof(m_cb_state));
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001121 m_cb_state.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001122 m_cb_state.pNext = VK_NULL_HANDLE;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001123 m_cb_state.alphaToCoverageEnable = VK_FALSE;
1124 m_cb_state.logicOp = VK_LOGIC_OP_COPY;
Tony Barboure2c58df2014-11-25 13:18:32 -07001125
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001126 m_ms_state.pNext = VK_NULL_HANDLE;
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001127 m_ms_state.sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO;
Tony Barbourf52346d2015-01-16 14:27:35 -07001128 m_ms_state.sampleMask = 1; // Do we have to specify MSAA even just to disable it?
Tony Barbourdfd533a2015-06-26 10:18:34 -06001129 m_ms_state.rasterSamples = 1;
Tony Barbourf52346d2015-01-16 14:27:35 -07001130 m_ms_state.minSampleShading = 0;
1131 m_ms_state.sampleShadingEnable = 0;
Tony Barboure2c58df2014-11-25 13:18:32 -07001132
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001133 m_vp_state.sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001134 m_vp_state.pNext = VK_NULL_HANDLE;
Tony Barbourd81b8882015-05-15 09:37:57 -06001135 m_vp_state.viewportCount = 1;
Tony Barbourd81b8882015-05-15 09:37:57 -06001136
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001137 m_ds_state.sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001138 m_ds_state.pNext = VK_NULL_HANDLE,
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001139 m_ds_state.depthTestEnable = VK_FALSE;
1140 m_ds_state.depthWriteEnable = VK_FALSE;
1141 m_ds_state.depthBoundsEnable = VK_FALSE;
Tony Barbourd1c35722015-04-16 15:59:00 -06001142 m_ds_state.depthCompareOp = VK_COMPARE_OP_LESS_EQUAL;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001143 m_ds_state.back.stencilDepthFailOp = VK_STENCIL_OP_KEEP;
1144 m_ds_state.back.stencilFailOp = VK_STENCIL_OP_KEEP;
1145 m_ds_state.back.stencilPassOp = VK_STENCIL_OP_KEEP;
Tony Barbourd1c35722015-04-16 15:59:00 -06001146 m_ds_state.back.stencilCompareOp = VK_COMPARE_OP_ALWAYS;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001147 m_ds_state.stencilTestEnable = VK_FALSE;
Tony Barbourf52346d2015-01-16 14:27:35 -07001148 m_ds_state.front = m_ds_state.back;
Tony Barboure2c58df2014-11-25 13:18:32 -07001149};
1150
Tony Barbour6918cd52015-04-09 12:58:51 -06001151void VkPipelineObj::AddShader(VkShaderObj* shader)
Tony Barboure2c58df2014-11-25 13:18:32 -07001152{
1153 m_shaderObjs.push_back(shader);
1154}
1155
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001156void VkPipelineObj::AddVertexInputAttribs(VkVertexInputAttributeDescription* vi_attrib, int count)
Tony Barboure2c58df2014-11-25 13:18:32 -07001157{
1158 m_vi_state.pVertexAttributeDescriptions = vi_attrib;
1159 m_vi_state.attributeCount = count;
1160}
1161
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001162void VkPipelineObj::AddVertexInputBindings(VkVertexInputBindingDescription* vi_binding, int count)
Tony Barboure2c58df2014-11-25 13:18:32 -07001163{
1164 m_vi_state.pVertexBindingDescriptions = vi_binding;
1165 m_vi_state.bindingCount = count;
1166}
1167
Tony Barbour6918cd52015-04-09 12:58:51 -06001168void VkPipelineObj::AddVertexDataBuffer(VkConstantBufferObj* vertexDataBuffer, int binding)
Tony Barboure2c58df2014-11-25 13:18:32 -07001169{
1170 m_vertexBufferObjs.push_back(vertexDataBuffer);
1171 m_vertexBufferBindings.push_back(binding);
1172 m_vertexBufferCount++;
1173}
1174
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001175void VkPipelineObj::AddColorAttachment(uint32_t binding, const VkPipelineColorBlendAttachmentState *att)
Chia-I Wuecebf752014-12-05 10:45:15 +08001176{
Tony Barbourf52346d2015-01-16 14:27:35 -07001177 if (binding+1 > m_colorAttachments.size())
1178 {
1179 m_colorAttachments.resize(binding+1);
1180 }
1181 m_colorAttachments[binding] = *att;
1182}
1183
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001184void VkPipelineObj::SetDepthStencil(VkPipelineDepthStencilStateCreateInfo *ds_state)
Tony Barbourf52346d2015-01-16 14:27:35 -07001185{
Tony Barbourf52346d2015-01-16 14:27:35 -07001186 m_ds_state.depthTestEnable = ds_state->depthTestEnable;
1187 m_ds_state.depthWriteEnable = ds_state->depthWriteEnable;
1188 m_ds_state.depthBoundsEnable = ds_state->depthBoundsEnable;
Tony Barbourd1c35722015-04-16 15:59:00 -06001189 m_ds_state.depthCompareOp = ds_state->depthCompareOp;
Tony Barbourf52346d2015-01-16 14:27:35 -07001190 m_ds_state.stencilTestEnable = ds_state->stencilTestEnable;
1191 m_ds_state.back = ds_state->back;
1192 m_ds_state.front = ds_state->front;
Chia-I Wuecebf752014-12-05 10:45:15 +08001193}
1194
Chia-I Wu08accc62015-07-07 11:50:03 +08001195VkResult VkPipelineObj::CreateVKPipeline(VkDescriptorSetObj &descriptorSet, VkRenderPass render_pass)
Tony Barbour976e1cf2014-12-17 11:57:31 -07001196{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001197 VkGraphicsPipelineCreateInfo info = {};
Tony Barbour976e1cf2014-12-17 11:57:31 -07001198
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001199 VkPipelineShaderStageCreateInfo* shaderCreateInfo;
Tony Barbour976e1cf2014-12-17 11:57:31 -07001200
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001201 info.stageCount = m_shaderObjs.size();
1202 info.pStages = new VkPipelineShaderStageCreateInfo[info.stageCount];
1203
Tony Barbour976e1cf2014-12-17 11:57:31 -07001204 for (int i=0; i<m_shaderObjs.size(); i++)
1205 {
Chia-I Wu11078b02015-01-04 16:27:24 +08001206 shaderCreateInfo = m_shaderObjs[i]->GetStageCreateInfo();
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001207 memcpy((void*)&info.pStages[i], shaderCreateInfo, sizeof(VkPipelineShaderStageCreateInfo));
Tony Barbour976e1cf2014-12-17 11:57:31 -07001208 }
1209
1210 if (m_vi_state.attributeCount && m_vi_state.bindingCount)
1211 {
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001212 m_vi_state.sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO;
Tony Barbour976e1cf2014-12-17 11:57:31 -07001213 }
1214
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -05001215 info.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001216 info.pNext = NULL;
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -05001217 info.flags = 0;
1218 info.layout = descriptorSet.GetPipelineLayout();
Tony Barbour976e1cf2014-12-17 11:57:31 -07001219
Tony Barbourf52346d2015-01-16 14:27:35 -07001220 m_cb_state.attachmentCount = m_colorAttachments.size();
1221 m_cb_state.pAttachments = &m_colorAttachments[0];
1222
Chia-I Wu08accc62015-07-07 11:50:03 +08001223 info.renderPass = render_pass;
1224 info.subpass = 0;
Tony Barbourdd6e32e2015-07-10 15:29:03 -06001225 info.pTessellationState = NULL;
1226 info.pVertexInputState = &m_vi_state;
1227 info.pInputAssemblyState = &m_ia_state;
1228 info.pViewportState = &m_vp_state;
1229 info.pRasterState = &m_rs_state;
1230 info.pMultisampleState = &m_ms_state;
1231 info.pDepthStencilState = &m_ds_state;
1232 info.pColorBlendState = &m_cb_state;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -06001233
Chris Forbes95292b12015-05-25 11:13:26 +12001234 return init_try(*m_device, info);
Tony Barbour976e1cf2014-12-17 11:57:31 -07001235}
Chia-I Wu2648d092014-12-29 14:24:14 +08001236
Tony Barbour6918cd52015-04-09 12:58:51 -06001237VkCommandBufferObj::VkCommandBufferObj(VkDeviceObj *device)
Tony Barbour6d047bf2014-12-10 14:34:45 -07001238{
Tony Barbour6d047bf2014-12-10 14:34:45 -07001239 m_device = device;
Courtney Goeltzenleuchter0c8385b2015-07-13 12:57:11 -06001240
1241 m_cmdPool.init(*device, vk_testing::CmdPool::create_info(device->graphics_queue_node_index_));
1242 init(*device, vk_testing::CmdBuffer::create_info(m_cmdPool.handle()));
Tony Barbour6d047bf2014-12-10 14:34:45 -07001243}
Tony Barbour471338d2014-12-10 17:28:39 -07001244
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001245VkCmdBuffer VkCommandBufferObj::GetBufferHandle()
Tony Barbour6d047bf2014-12-10 14:34:45 -07001246{
Chia-I Wube2b9172015-07-03 11:49:42 +08001247 return handle();
Tony Barbour6d047bf2014-12-10 14:34:45 -07001248}
Tony Barbour471338d2014-12-10 17:28:39 -07001249
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001250VkResult VkCommandBufferObj::BeginCommandBuffer(VkCmdBufferBeginInfo *pInfo)
Tony Barbour471338d2014-12-10 17:28:39 -07001251{
Jeremy Hayesd65ae082015-01-14 16:17:08 -07001252 begin(pInfo);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001253 return VK_SUCCESS;
Jeremy Hayesd65ae082015-01-14 16:17:08 -07001254}
1255
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001256VkResult VkCommandBufferObj::BeginCommandBuffer()
Jeremy Hayesd65ae082015-01-14 16:17:08 -07001257{
1258 begin();
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001259 return VK_SUCCESS;
Tony Barbour471338d2014-12-10 17:28:39 -07001260}
1261
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001262VkResult VkCommandBufferObj::EndCommandBuffer()
Tony Barbour471338d2014-12-10 17:28:39 -07001263{
Chia-I Wud28343c2014-12-28 15:12:48 +08001264 end();
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001265 return VK_SUCCESS;
Tony Barbour471338d2014-12-10 17:28:39 -07001266}
1267
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -06001268void VkCommandBufferObj::PipelineBarrier(VkPipelineStageFlags src_stages, VkPipelineStageFlags dest_stages, VkBool32 byRegion, uint32_t memBarrierCount, const void* const* ppMemBarriers)
Tony Barbour471338d2014-12-10 17:28:39 -07001269{
Chia-I Wube2b9172015-07-03 11:49:42 +08001270 vkCmdPipelineBarrier(handle(), src_stages, dest_stages, byRegion, memBarrierCount, ppMemBarriers);
Tony Barbour471338d2014-12-10 17:28:39 -07001271}
1272
Chris Forbesf0796e12015-06-24 14:34:53 +12001273void VkCommandBufferObj::ClearAllBuffers(VkClearColorValue clear_color, float depth_clear_color, uint32_t stencil_clear_color,
Tony Barbour6918cd52015-04-09 12:58:51 -06001274 VkDepthStencilObj *depthStencilObj)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001275{
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001276 uint32_t i;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001277 const VkFlags output_mask =
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -06001278 VK_MEMORY_OUTPUT_HOST_WRITE_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001279 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
1280 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
1281 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -06001282 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001283 const VkFlags input_mask = 0;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001284
1285 // whatever we want to do, we do it to the whole buffer
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001286 VkImageSubresourceRange srRange = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001287 srRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001288 srRange.baseMipLevel = 0;
Courtney Goeltzenleuchter62b2d432015-06-04 11:35:43 -06001289 srRange.mipLevels = VK_LAST_MIP_LEVEL;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001290 srRange.baseArraySlice = 0;
Courtney Goeltzenleuchter62b2d432015-06-04 11:35:43 -06001291 srRange.arraySize = VK_LAST_ARRAY_SLICE;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001292
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001293 VkImageMemoryBarrier memory_barrier = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001294 memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001295 memory_barrier.outputMask = output_mask;
1296 memory_barrier.inputMask = input_mask;
Mark Lobodzinski2b3fa3d2015-07-01 15:18:26 -06001297 memory_barrier.newLayout = VK_IMAGE_LAYOUT_GENERAL;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001298 memory_barrier.subresourceRange = srRange;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001299 VkImageMemoryBarrier *pmemory_barrier = &memory_barrier;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001300
Tony Barbour0b2cfb22015-06-29 16:20:35 -06001301 VkPipelineStageFlags src_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
1302 VkPipelineStageFlags dest_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001303
Courtney Goeltzenleuchterb4337c12015-03-05 16:47:18 -07001304 for (i = 0; i < m_renderTargets.size(); i++) {
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001305 memory_barrier.image = m_renderTargets[i]->image();
1306 memory_barrier.oldLayout = m_renderTargets[i]->layout();
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -06001307 vkCmdPipelineBarrier( handle(), src_stages, dest_stages, false, 1, (const void * const*)&pmemory_barrier);
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001308 m_renderTargets[i]->layout(memory_barrier.newLayout);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001309
Chia-I Wube2b9172015-07-03 11:49:42 +08001310 vkCmdClearColorImage(handle(),
Mark Lobodzinski2b3fa3d2015-07-01 15:18:26 -06001311 m_renderTargets[i]->image(), VK_IMAGE_LAYOUT_GENERAL,
Courtney Goeltzenleuchterd7a5cff2015-04-23 17:49:22 -06001312 &clear_color, 1, &srRange );
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001313
Tony Barbour30cc9e82014-12-17 11:53:55 -07001314 }
1315
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001316 if (depthStencilObj)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001317 {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001318 VkImageSubresourceRange dsRange = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001319 dsRange.aspect = VK_IMAGE_ASPECT_DEPTH;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001320 dsRange.baseMipLevel = 0;
Courtney Goeltzenleuchter62b2d432015-06-04 11:35:43 -06001321 dsRange.mipLevels = VK_LAST_MIP_LEVEL;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001322 dsRange.baseArraySlice = 0;
Courtney Goeltzenleuchter62b2d432015-06-04 11:35:43 -06001323 dsRange.arraySize = VK_LAST_ARRAY_SLICE;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001324
1325 // prepare the depth buffer for clear
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001326
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001327 memory_barrier.oldLayout = depthStencilObj->BindInfo()->layout;
Mark Lobodzinski2b3fa3d2015-07-01 15:18:26 -06001328 memory_barrier.newLayout = VK_IMAGE_LAYOUT_GENERAL;
Chia-I Wu681d7a02015-07-03 13:44:34 +08001329 memory_barrier.image = depthStencilObj->handle();
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001330 memory_barrier.subresourceRange = dsRange;
1331
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -06001332 vkCmdPipelineBarrier( handle(), src_stages, dest_stages, false, 1, (const void * const*)&pmemory_barrier);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001333
Chia-I Wube2b9172015-07-03 11:49:42 +08001334 vkCmdClearDepthStencilImage(handle(),
Chia-I Wu681d7a02015-07-03 13:44:34 +08001335 depthStencilObj->handle(), VK_IMAGE_LAYOUT_GENERAL,
Chris Forbesd9be82b2015-06-22 17:21:59 +12001336 depth_clear_color, stencil_clear_color,
1337 1, &dsRange);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001338
1339 // prepare depth buffer for rendering
Chia-I Wu681d7a02015-07-03 13:44:34 +08001340 memory_barrier.image = depthStencilObj->handle();
Mark Lobodzinski2b3fa3d2015-07-01 15:18:26 -06001341 memory_barrier.oldLayout = VK_IMAGE_LAYOUT_GENERAL;
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001342 memory_barrier.newLayout = depthStencilObj->BindInfo()->layout;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001343 memory_barrier.subresourceRange = dsRange;
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -06001344 vkCmdPipelineBarrier( handle(), src_stages, dest_stages, false, 1, (const void * const*)&pmemory_barrier);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001345 }
1346}
1347
Tony Barbourc1eb1a52015-07-20 13:00:10 -06001348void VkCommandBufferObj::FillBuffer(VkBuffer buffer, VkDeviceSize offset, VkDeviceSize fill_size, uint32_t data)
1349{
1350 vkCmdFillBuffer( handle(), buffer, offset, fill_size, data);
1351}
1352
Tony Barbour6918cd52015-04-09 12:58:51 -06001353void VkCommandBufferObj::PrepareAttachments()
Tony Barbour30cc9e82014-12-17 11:53:55 -07001354{
Mark Lobodzinski17caf572015-01-29 08:55:56 -06001355 uint32_t i;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001356 const VkFlags output_mask =
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -06001357 VK_MEMORY_OUTPUT_HOST_WRITE_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001358 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
1359 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
1360 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -06001361 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001362 const VkFlags input_mask =
Courtney Goeltzenleuchterf69f8a22015-04-29 17:16:21 -06001363 VK_MEMORY_INPUT_HOST_READ_BIT |
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001364 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
1365 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
1366 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
1367 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
1368 VK_MEMORY_INPUT_SHADER_READ_BIT |
1369 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
1370 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterb9776ab2015-04-15 15:29:59 -06001371 VK_MEMORY_INPUT_TRANSFER_BIT;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001372
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001373 VkImageSubresourceRange srRange = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001374 srRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001375 srRange.baseMipLevel = 0;
Courtney Goeltzenleuchter62b2d432015-06-04 11:35:43 -06001376 srRange.mipLevels = VK_LAST_MIP_LEVEL;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001377 srRange.baseArraySlice = 0;
Courtney Goeltzenleuchter62b2d432015-06-04 11:35:43 -06001378 srRange.arraySize = VK_LAST_ARRAY_SLICE;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001379
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001380 VkImageMemoryBarrier memory_barrier = {};
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001381 memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001382 memory_barrier.outputMask = output_mask;
1383 memory_barrier.inputMask = input_mask;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001384 memory_barrier.newLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001385 memory_barrier.subresourceRange = srRange;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001386 VkImageMemoryBarrier *pmemory_barrier = &memory_barrier;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001387
Tony Barbour0b2cfb22015-06-29 16:20:35 -06001388 VkPipelineStageFlags src_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
1389 VkPipelineStageFlags dest_stages = VK_PIPELINE_STAGE_ALL_GPU_COMMANDS;
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001390
Courtney Goeltzenleuchterb4337c12015-03-05 16:47:18 -07001391 for(i=0; i<m_renderTargets.size(); i++)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001392 {
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001393 memory_barrier.image = m_renderTargets[i]->image();
1394 memory_barrier.oldLayout = m_renderTargets[i]->layout();
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -06001395 vkCmdPipelineBarrier( handle(), src_stages, dest_stages, false, 1, (const void * const*)&pmemory_barrier);
Mike Stroyanfb80d5f2014-12-04 11:08:39 +00001396 m_renderTargets[i]->layout(memory_barrier.newLayout);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001397 }
Tony Barbour30cc9e82014-12-17 11:53:55 -07001398}
1399
Chia-I Wu08accc62015-07-07 11:50:03 +08001400void VkCommandBufferObj::BeginRenderPass(const VkRenderPassBeginInfo &info)
Courtney Goeltzenleuchter69894b72015-04-03 15:25:24 -06001401{
Chia-I Wube2b9172015-07-03 11:49:42 +08001402 vkCmdBeginRenderPass( handle(), &info, VK_RENDER_PASS_CONTENTS_INLINE);
Courtney Goeltzenleuchter69894b72015-04-03 15:25:24 -06001403}
1404
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08001405void VkCommandBufferObj::EndRenderPass()
Courtney Goeltzenleuchter69894b72015-04-03 15:25:24 -06001406{
Chia-I Wube2b9172015-07-03 11:49:42 +08001407 vkCmdEndRenderPass(handle());
Courtney Goeltzenleuchter69894b72015-04-03 15:25:24 -06001408}
1409
Tony Barbour67e99152015-07-10 14:10:27 -06001410void VkCommandBufferObj::BindDynamicViewportState(VkDynamicViewportState viewportState)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001411{
Tony Barbour67e99152015-07-10 14:10:27 -06001412 vkCmdBindDynamicViewportState( handle(), viewportState);
1413}
1414
1415void VkCommandBufferObj::BindDynamicRasterState(VkDynamicRasterState rasterState)
1416{
1417 vkCmdBindDynamicRasterState( handle(), rasterState);
1418}
1419
1420void VkCommandBufferObj::BindDynamicColorBlendState(VkDynamicColorBlendState colorBlendState)
1421{
1422 vkCmdBindDynamicColorBlendState( handle(), colorBlendState);
1423}
1424
1425void VkCommandBufferObj::BindDynamicDepthStencilState(VkDynamicDepthStencilState depthStencilState)
1426{
1427 vkCmdBindDynamicDepthStencilState( handle(), depthStencilState);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001428}
1429
Tony Barbour6918cd52015-04-09 12:58:51 -06001430void VkCommandBufferObj::AddRenderTarget(VkImageObj *renderTarget)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001431{
1432 m_renderTargets.push_back(renderTarget);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001433}
1434
Tony Barbour6918cd52015-04-09 12:58:51 -06001435void VkCommandBufferObj::DrawIndexed(uint32_t firstIndex, uint32_t indexCount, int32_t vertexOffset, uint32_t firstInstance, uint32_t instanceCount)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001436{
Chia-I Wube2b9172015-07-03 11:49:42 +08001437 vkCmdDrawIndexed(handle(), firstIndex, indexCount, vertexOffset, firstInstance, instanceCount);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001438}
1439
Tony Barbour6918cd52015-04-09 12:58:51 -06001440void VkCommandBufferObj::Draw(uint32_t firstVertex, uint32_t vertexCount, uint32_t firstInstance, uint32_t instanceCount)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001441{
Chia-I Wube2b9172015-07-03 11:49:42 +08001442 vkCmdDraw(handle(), firstVertex, vertexCount, firstInstance, instanceCount);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001443}
1444
Tony Barbour6918cd52015-04-09 12:58:51 -06001445void VkCommandBufferObj::QueueCommandBuffer()
Tony Barbour30cc9e82014-12-17 11:53:55 -07001446{
Tony Barbour67e99152015-07-10 14:10:27 -06001447 VkFence nullFence = { VK_NULL_HANDLE };
1448 QueueCommandBuffer(nullFence);
Tony Barbour09b7ac32015-04-08 10:11:29 -06001449}
1450
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001451void VkCommandBufferObj::QueueCommandBuffer(VkFence fence)
Tony Barbour09b7ac32015-04-08 10:11:29 -06001452{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001453 VkResult err = VK_SUCCESS;
Tony Barbour30cc9e82014-12-17 11:53:55 -07001454
1455 // submit the command buffer to the universal queue
Chia-I Wube2b9172015-07-03 11:49:42 +08001456 err = vkQueueSubmit( m_device->m_queue, 1, &handle(), fence );
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001457 ASSERT_VK_SUCCESS( err );
Tony Barbour30cc9e82014-12-17 11:53:55 -07001458
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001459 err = vkQueueWaitIdle( m_device->m_queue );
1460 ASSERT_VK_SUCCESS( err );
Tony Barbour30cc9e82014-12-17 11:53:55 -07001461
1462 // Wait for work to finish before cleaning up.
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001463 vkDeviceWaitIdle(m_device->device());
Tony Barbour30cc9e82014-12-17 11:53:55 -07001464}
1465
Tony Barbour6918cd52015-04-09 12:58:51 -06001466void VkCommandBufferObj::BindPipeline(VkPipelineObj &pipeline)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001467{
Chia-I Wube2b9172015-07-03 11:49:42 +08001468 vkCmdBindPipeline( handle(), VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline.handle() );
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001469}
1470
Tony Barbour6918cd52015-04-09 12:58:51 -06001471void VkCommandBufferObj::BindDescriptorSet(VkDescriptorSetObj &descriptorSet)
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001472{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001473 VkDescriptorSet set_obj = descriptorSet.GetDescriptorSetHandle();
Chia-I Wu53f07d72015-03-28 15:23:55 +08001474
Chia-I Wu1a28fe02015-01-01 07:55:04 +08001475 // bind pipeline, vertex buffer (descriptor set) and WVP (dynamic buffer view)
Chia-I Wube2b9172015-07-03 11:49:42 +08001476 vkCmdBindDescriptorSets(handle(), VK_PIPELINE_BIND_POINT_GRAPHICS, descriptorSet.GetPipelineLayout(),
Cody Northropd4c1a502015-04-16 13:41:56 -06001477 0, 1, &set_obj, 0, NULL );
Tony Barbour30cc9e82014-12-17 11:53:55 -07001478}
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001479
Tony Barbour6918cd52015-04-09 12:58:51 -06001480void VkCommandBufferObj::BindIndexBuffer(VkIndexBufferObj *indexBuffer, uint32_t offset)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001481{
Chia-I Wu681d7a02015-07-03 13:44:34 +08001482 vkCmdBindIndexBuffer(handle(), indexBuffer->handle(), offset, indexBuffer->GetIndexType());
Tony Barbour30cc9e82014-12-17 11:53:55 -07001483}
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001484
Tony Barbourd1c35722015-04-16 15:59:00 -06001485void VkCommandBufferObj::BindVertexBuffer(VkConstantBufferObj *vertexBuffer, VkDeviceSize offset, uint32_t binding)
Tony Barbour30cc9e82014-12-17 11:53:55 -07001486{
Chia-I Wu681d7a02015-07-03 13:44:34 +08001487 vkCmdBindVertexBuffers(handle(), binding, 1, &vertexBuffer->handle(), &offset);
Tony Barbour30cc9e82014-12-17 11:53:55 -07001488}
Courtney Goeltzenleuchter97b75232015-04-07 17:13:38 -06001489
Tony Barbour6918cd52015-04-09 12:58:51 -06001490VkDepthStencilObj::VkDepthStencilObj()
Tony Barbour1c45ce02015-03-27 17:03:18 -06001491{
1492 m_initialized = false;
1493}
Tony Barbour6918cd52015-04-09 12:58:51 -06001494bool VkDepthStencilObj::Initialized()
Tony Barbour1c45ce02015-03-27 17:03:18 -06001495{
1496 return m_initialized;
1497}
1498
Chia-I Wu08accc62015-07-07 11:50:03 +08001499VkAttachmentBindInfo* VkDepthStencilObj::BindInfo()
Tony Barbour1c45ce02015-03-27 17:03:18 -06001500{
Chia-I Wu08accc62015-07-07 11:50:03 +08001501 return &m_attachmentBindInfo;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001502}
1503
Chia-I Wu08accc62015-07-07 11:50:03 +08001504void VkDepthStencilObj::Init(VkDeviceObj *device, int32_t width, int32_t height, VkFormat format)
Tony Barbour1c45ce02015-03-27 17:03:18 -06001505{
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001506 VkImageCreateInfo image_info;
Chia-I Wu08accc62015-07-07 11:50:03 +08001507 VkAttachmentViewCreateInfo view_info;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001508
1509 m_device = device;
1510 m_initialized = true;
Chia-I Wu08accc62015-07-07 11:50:03 +08001511 m_depth_stencil_fmt = format;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001512
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001513 image_info.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001514 image_info.pNext = NULL;
Tony Barbourd1c35722015-04-16 15:59:00 -06001515 image_info.imageType = VK_IMAGE_TYPE_2D;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001516 image_info.format = m_depth_stencil_fmt;
1517 image_info.extent.width = width;
1518 image_info.extent.height = height;
1519 image_info.extent.depth = 1;
1520 image_info.mipLevels = 1;
1521 image_info.arraySize = 1;
1522 image_info.samples = 1;
Tony Barbourd1c35722015-04-16 15:59:00 -06001523 image_info.tiling = VK_IMAGE_TILING_OPTIMAL;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001524 image_info.usage = VK_IMAGE_USAGE_DEPTH_STENCIL_BIT;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001525 image_info.flags = 0;
1526 init(*m_device, image_info);
1527
Chia-I Wu08accc62015-07-07 11:50:03 +08001528 view_info.sType = VK_STRUCTURE_TYPE_ATTACHMENT_VIEW_CREATE_INFO;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001529 view_info.pNext = NULL;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001530 view_info.image = VK_NULL_HANDLE;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001531 view_info.mipLevel = 0;
1532 view_info.baseArraySlice = 0;
1533 view_info.arraySize = 1;
1534 view_info.flags = 0;
Chia-I Wu681d7a02015-07-03 13:44:34 +08001535 view_info.image = handle();
Chia-I Wu08accc62015-07-07 11:50:03 +08001536 m_attachmentView.init(*m_device, view_info);
Tony Barbour1c45ce02015-03-27 17:03:18 -06001537
Chia-I Wu3158bf32015-07-03 11:49:42 +08001538 m_attachmentBindInfo.view = m_attachmentView.handle();
Chia-I Wu08accc62015-07-07 11:50:03 +08001539 m_attachmentBindInfo.layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
Tony Barbour1c45ce02015-03-27 17:03:18 -06001540}