blob: 25d2098130e486a514c1c7f91e548d8ca9cdf440 [file] [log] [blame]
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -06001/*
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06002 * Vulkan Tests
Courtney Goeltzenleuchter5744b972014-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 Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060028#include "vkrenderframework.h"
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060029
Jon Ashburn07b309a2015-04-15 11:31:12 -060030#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
31
Tony Barbour01999182015-04-09 12:58:51 -060032VkRenderFramework::VkRenderFramework() :
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060033 m_cmdBuffer( VK_NULL_HANDLE ),
Tony Barbourbc868f92015-04-09 11:07:02 -060034 m_renderPass(VK_NULL_HANDLE),
35 m_framebuffer(VK_NULL_HANDLE),
Courtney Goeltzenleuchter9cc421e2015-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 Goeltzenleuchtere5409342014-10-08 14:26:40 -060040 m_width( 256.0 ), // default window width
Courtney Goeltzenleuchter7e305322015-03-05 17:26:38 -070041 m_height( 256.0 ), // default window height
Tony Barbour8205d902015-04-16 15:59:00 -060042 m_render_target_fmt( VK_FORMAT_R8G8B8A8_UNORM ),
43 m_depth_stencil_fmt( VK_FORMAT_UNDEFINED ),
Courtney Goeltzenleuchter7e305322015-03-05 17:26:38 -070044 m_depth_clear_color( 1.0 ),
45 m_stencil_clear_color( 0 )
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060046{
Tony Barbour17c6ab12015-03-27 17:03:18 -060047
Courtney Goeltzenleuchter7e305322015-03-05 17:26:38 -070048 // clear the back buffer to dark grey
49 m_clear_color.color.rawColor[0] = 64;
50 m_clear_color.color.rawColor[1] = 64;
51 m_clear_color.color.rawColor[2] = 64;
52 m_clear_color.color.rawColor[3] = 0;
53 m_clear_color.useRawValue = true;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060054}
55
Tony Barbour01999182015-04-09 12:58:51 -060056VkRenderFramework::~VkRenderFramework()
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060057{
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -060058
59}
60
Tony Barbour01999182015-04-09 12:58:51 -060061void VkRenderFramework::InitFramework()
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -060062{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060063 VkResult err;
Courtney Goeltzenleuchterddcb6192015-04-14 18:48:46 -060064 VkInstanceCreateInfo instInfo = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060065 instInfo.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
Jon Ashburn29669a42015-04-04 14:52:07 -060066 instInfo.pNext = NULL;
67 instInfo.pAppInfo = &app_info;
68 instInfo.pAllocCb = NULL;
69 instInfo.extensionCount = 0;
70 instInfo.ppEnabledExtensionNames = NULL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060071 err = vkCreateInstance(&instInfo, &this->inst);
72 ASSERT_VK_SUCCESS(err);
Jon Ashburn07b309a2015-04-15 11:31:12 -060073 err = vkEnumeratePhysicalDevices(inst, &this->gpu_count, NULL);
74 ASSERT_LE(this->gpu_count, ARRAY_SIZE(objs)) << "Too many gpus";
75 ASSERT_VK_SUCCESS(err);
76 err = vkEnumeratePhysicalDevices(inst, &this->gpu_count, objs);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060077 ASSERT_VK_SUCCESS(err);
Jon Ashburn19733c92014-11-26 11:06:49 -070078 ASSERT_GE(this->gpu_count, 1) << "No GPU available";
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -060079
Tony Barbour01999182015-04-09 12:58:51 -060080 m_device = new VkDeviceObj(0, objs[0]);
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -060081 m_device->get_device_queue();
Tony Barbour17c6ab12015-03-27 17:03:18 -060082
Tony Barbour01999182015-04-09 12:58:51 -060083 m_depthStencil = new VkDepthStencilObj();
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -060084}
85
Tony Barbour01999182015-04-09 12:58:51 -060086void VkRenderFramework::ShutdownFramework()
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -060087{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060088 if (m_colorBlend) vkDestroyObject(m_colorBlend);
89 if (m_stateDepthStencil) vkDestroyObject(m_stateDepthStencil);
90 if (m_stateRaster) vkDestroyObject(m_stateRaster);
91 if (m_cmdBuffer) vkDestroyObject(m_cmdBuffer);
92 if (m_framebuffer) vkDestroyObject(m_framebuffer);
93 if (m_renderPass) vkDestroyObject(m_renderPass);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060094
95 if (m_stateViewport) {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060096 vkDestroyObject(m_stateViewport);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060097 }
Tobin Ehlis12ee35f2015-03-26 08:23:25 -060098 while (!m_renderTargets.empty()) {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -060099 vkDestroyObject(m_renderTargets.back()->targetView());
Mark Lobodzinskicf26e072015-04-16 11:44:05 -0500100 vkQueueBindObjectMemory(m_device->m_queue, m_renderTargets.back()->image(), 0, VK_NULL_HANDLE, 0);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600101 vkDestroyObject(m_renderTargets.back()->image());
102 vkFreeMemory(m_renderTargets.back()->memory());
Tobin Ehlis12ee35f2015-03-26 08:23:25 -0600103 m_renderTargets.pop_back();
104 }
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600105
Tony Barbour17c6ab12015-03-27 17:03:18 -0600106 delete m_depthStencil;
107
Courtney Goeltzenleuchtercb5a89c2014-10-08 12:20:26 -0600108 // reset the driver
Chia-I Wu1c9869e2014-12-28 14:27:28 +0800109 delete m_device;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600110 vkDestroyInstance(this->inst);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600111}
112
Tony Barbour01999182015-04-09 12:58:51 -0600113void VkRenderFramework::InitState()
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600114{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600115 VkResult err;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600116
Tony Barbour8205d902015-04-16 15:59:00 -0600117 m_render_target_fmt = VK_FORMAT_B8G8R8A8_UNORM;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600118
119 // create a raster state (solid, back-face culling)
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600120 VkDynamicRsStateCreateInfo raster = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600121 raster.sType = VK_STRUCTURE_TYPE_DYNAMIC_RS_STATE_CREATE_INFO;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700122 raster.pointSize = 1.0;
123
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600124 err = vkCreateDynamicRasterState( device(), &raster, &m_stateRaster );
125 ASSERT_VK_SUCCESS(err);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600126
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600127 VkDynamicCbStateCreateInfo blend = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600128 blend.sType = VK_STRUCTURE_TYPE_DYNAMIC_CB_STATE_CREATE_INFO;
129 err = vkCreateDynamicColorBlendState(device(), &blend, &m_colorBlend);
130 ASSERT_VK_SUCCESS( err );
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600131
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600132 VkDynamicDsStateCreateInfo depthStencil = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600133 depthStencil.sType = VK_STRUCTURE_TYPE_DYNAMIC_DS_STATE_CREATE_INFO;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600134 depthStencil.minDepth = 0.f;
135 depthStencil.maxDepth = 1.f;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700136 depthStencil.stencilFrontRef = 0;
137 depthStencil.stencilBackRef = 0;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600138
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600139 err = vkCreateDynamicDepthStencilState( device(), &depthStencil, &m_stateDepthStencil );
140 ASSERT_VK_SUCCESS( err );
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600141
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600142 VkCmdBufferCreateInfo cmdInfo = {};
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600143
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600144 cmdInfo.sType = VK_STRUCTURE_TYPE_CMD_BUFFER_CREATE_INFO;
Courtney Goeltzenleuchterf3168062015-03-05 18:09:39 -0700145 cmdInfo.queueNodeIndex = m_device->graphics_queue_node_index_;
146
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600147 err = vkCreateCommandBuffer(device(), &cmdInfo, &m_cmdBuffer);
148 ASSERT_VK_SUCCESS(err) << "vkCreateCommandBuffer failed";
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600149}
150
Tony Barbour01999182015-04-09 12:58:51 -0600151void VkRenderFramework::InitViewport(float width, float height)
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600152{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600153 VkResult err;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600154
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600155 VkViewport viewport;
156 VkRect scissor;
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600157
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600158 VkDynamicVpStateCreateInfo viewportCreate = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600159 viewportCreate.sType = VK_STRUCTURE_TYPE_DYNAMIC_VP_STATE_CREATE_INFO;
Courtney Goeltzenleuchterc6e32f92015-02-11 14:13:34 -0700160 viewportCreate.viewportAndScissorCount = 1;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700161 viewport.originX = 0;
162 viewport.originY = 0;
163 viewport.width = 1.f * width;
164 viewport.height = 1.f * height;
165 viewport.minDepth = 0.f;
166 viewport.maxDepth = 1.f;
Courtney Goeltzenleuchterc6e32f92015-02-11 14:13:34 -0700167 scissor.extent.width = width;
168 scissor.extent.height = height;
169 scissor.offset.x = 0;
170 scissor.offset.y = 0;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700171 viewportCreate.pViewports = &viewport;
Courtney Goeltzenleuchterc6e32f92015-02-11 14:13:34 -0700172 viewportCreate.pScissors = &scissor;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700173
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600174 err = vkCreateDynamicViewportState( device(), &viewportCreate, &m_stateViewport );
175 ASSERT_VK_SUCCESS( err );
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600176 m_width = width;
177 m_height = height;
178}
179
Tony Barbour01999182015-04-09 12:58:51 -0600180void VkRenderFramework::InitViewport()
Courtney Goeltzenleuchtere5409342014-10-08 14:26:40 -0600181{
182 InitViewport(m_width, m_height);
183}
Tony Barbour01999182015-04-09 12:58:51 -0600184void VkRenderFramework::InitRenderTarget()
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600185{
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -0700186 InitRenderTarget(1);
187}
188
Tony Barbour01999182015-04-09 12:58:51 -0600189void VkRenderFramework::InitRenderTarget(uint32_t targets)
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -0700190{
Tony Barbour17c6ab12015-03-27 17:03:18 -0600191 InitRenderTarget(targets, NULL);
192}
193
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600194void VkRenderFramework::InitRenderTarget(VkDepthStencilBindInfo *dsBinding)
Tony Barbour17c6ab12015-03-27 17:03:18 -0600195{
196 InitRenderTarget(1, dsBinding);
197}
198
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600199void VkRenderFramework::InitRenderTarget(uint32_t targets, VkDepthStencilBindInfo *dsBinding)
Tony Barbour17c6ab12015-03-27 17:03:18 -0600200{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600201 std::vector<VkAttachmentLoadOp> load_ops;
202 std::vector<VkAttachmentStoreOp> store_ops;
203 std::vector<VkClearColor> clear_colors;
Tony Barbour17c6ab12015-03-27 17:03:18 -0600204
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -0600205 uint32_t i;
Chia-I Wue7748802014-12-05 10:45:15 +0800206
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -0700207 for (i = 0; i < targets; i++) {
Tony Barbour01999182015-04-09 12:58:51 -0600208 VkImageObj *img = new VkImageObj(m_device);
Chia-I Wu462d2092014-12-29 14:31:52 +0800209 img->init(m_width, m_height, m_render_target_fmt,
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600210 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT);
Tony Barbourfa6cac72015-01-16 14:27:35 -0700211 m_colorBindings[i].view = img->targetView();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600212 m_colorBindings[i].layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700213 m_renderTargets.push_back(img);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600214 load_ops.push_back(VK_ATTACHMENT_LOAD_OP_LOAD);
215 store_ops.push_back(VK_ATTACHMENT_STORE_OP_STORE);
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -0600216 clear_colors.push_back(m_clear_color);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600217// m_mem_ref_mgr.AddMemoryRefs(*img);
Chia-I Wue7748802014-12-05 10:45:15 +0800218 }
Jeremy Hayese0c3b222015-01-14 16:17:08 -0700219 // Create Framebuffer and RenderPass with color attachments and any depth/stencil attachment
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600220 VkFramebufferCreateInfo fb_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600221 fb_info.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600222 fb_info.pNext = NULL;
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -0700223 fb_info.colorAttachmentCount = m_renderTargets.size();
Tony Barbour901f3bc2015-04-01 17:10:07 -0600224 fb_info.pColorAttachments = m_colorBindings;
225 fb_info.pDepthStencilAttachment = dsBinding;
226 fb_info.sampleCount = 1;
227 fb_info.width = (uint32_t)m_width;
228 fb_info.height = (uint32_t)m_height;
229 fb_info.layers = 1;
230
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600231 vkCreateFramebuffer(device(), &fb_info, &m_framebuffer);
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -0600232
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600233 VkRenderPassCreateInfo rp_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600234 rp_info.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO;
Jeremy Hayese0c3b222015-01-14 16:17:08 -0700235 rp_info.renderArea.extent.width = m_width;
236 rp_info.renderArea.extent.height = m_height;
Tony Barbour17c6ab12015-03-27 17:03:18 -0600237
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -0700238 rp_info.colorAttachmentCount = m_renderTargets.size();
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -0600239 rp_info.pColorFormats = &m_render_target_fmt;
240 rp_info.pColorLayouts = &m_colorBindings[0].layout;
241 rp_info.pColorLoadOps = &load_ops[0];
242 rp_info.pColorStoreOps = &store_ops[0];
243 rp_info.pColorLoadClearValues = &clear_colors[0];
244 rp_info.depthStencilFormat = m_depth_stencil_fmt;
Tony Barbour17c6ab12015-03-27 17:03:18 -0600245 if (dsBinding) {
246 rp_info.depthStencilLayout = dsBinding->layout;
247 }
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600248 rp_info.depthLoadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -0600249 rp_info.depthLoadClearValue = m_depth_clear_color;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600250 rp_info.depthStoreOp = VK_ATTACHMENT_STORE_OP_STORE;
251 rp_info.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -0600252 rp_info.stencilLoadClearValue = m_stencil_clear_color;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600253 rp_info.stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE;
254 vkCreateRenderPass(device(), &rp_info, &m_renderPass);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -0600255}
256
Mark Lobodzinski15427102015-02-18 16:38:17 -0600257
258
Tony Barbour8205d902015-04-16 15:59:00 -0600259VkDeviceObj::VkDeviceObj(uint32_t id, VkPhysicalDevice obj) :
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600260 vk_testing::Device(obj), id(id)
Chia-I Wu234a0ae2014-12-29 15:23:20 +0800261{
262 init();
263
264 props = gpu().properties();
265 queue_props = &gpu().queue_properties()[0];
266}
267
Tony Barbour01999182015-04-09 12:58:51 -0600268void VkDeviceObj::get_device_queue()
Chia-I Wu234a0ae2014-12-29 15:23:20 +0800269{
270 ASSERT_NE(true, graphics_queues().empty());
271 m_queue = graphics_queues()[0]->obj();
272}
273
Tony Barbour01999182015-04-09 12:58:51 -0600274VkDescriptorSetObj::VkDescriptorSetObj(VkDeviceObj *device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700275{
276 m_device = device;
277 m_nextSlot = 0;
278
279}
280
Tony Barbour01999182015-04-09 12:58:51 -0600281VkDescriptorSetObj::~VkDescriptorSetObj()
Tony Barbourf43b6982014-11-25 13:18:32 -0700282{
Chia-I Wuf8385062015-01-04 16:27:24 +0800283 delete m_set;
Tony Barbourf43b6982014-11-25 13:18:32 -0700284}
Tony Barbour408ca622014-12-04 14:33:33 -0700285
Tony Barbour01999182015-04-09 12:58:51 -0600286int VkDescriptorSetObj::AppendDummy()
Tony Barbourf43b6982014-11-25 13:18:32 -0700287{
Chia-I Wuf8385062015-01-04 16:27:24 +0800288 /* request a descriptor but do not update it */
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600289 VkDescriptorTypeCount tc = {};
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600290 tc.type = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER;
Chia-I Wuf8385062015-01-04 16:27:24 +0800291 tc.count = 1;
292 m_type_counts.push_back(tc);
Tony Barbourf43b6982014-11-25 13:18:32 -0700293
Chia-I Wuf8385062015-01-04 16:27:24 +0800294 return m_nextSlot++;
Tony Barbourf43b6982014-11-25 13:18:32 -0700295}
Tony Barbour408ca622014-12-04 14:33:33 -0700296
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600297int VkDescriptorSetObj::AppendBuffer(VkDescriptorType type, VkConstantBufferObj &constantBuffer)
Tony Barbourf43b6982014-11-25 13:18:32 -0700298{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600299 VkDescriptorTypeCount tc = {};
Chia-I Wuf8385062015-01-04 16:27:24 +0800300 tc.type = type;
301 tc.count = 1;
302 m_type_counts.push_back(tc);
Tony Barbourf43b6982014-11-25 13:18:32 -0700303
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600304 m_updateBuffers.push_back(vk_testing::DescriptorSet::update(type,
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600305 m_nextSlot, 0, 1, &constantBuffer.m_bufferViewInfo));
306
307 // Track mem references for this descriptor set object
308 mem_ref_mgr.AddMemoryRefs(constantBuffer);
Chia-I Wuf8385062015-01-04 16:27:24 +0800309
310 return m_nextSlot++;
Tony Barbourf43b6982014-11-25 13:18:32 -0700311}
Tony Barbour408ca622014-12-04 14:33:33 -0700312
Tony Barbour01999182015-04-09 12:58:51 -0600313int VkDescriptorSetObj::AppendSamplerTexture( VkSamplerObj* sampler, VkTextureObj* texture)
Tony Barbourf43b6982014-11-25 13:18:32 -0700314{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600315 VkDescriptorTypeCount tc = {};
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600316 tc.type = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
Chia-I Wuf8385062015-01-04 16:27:24 +0800317 tc.count = 1;
318 m_type_counts.push_back(tc);
Tony Barbourf43b6982014-11-25 13:18:32 -0700319
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600320 VkSamplerImageViewInfo tmp = {};
Courtney Goeltzenleuchterd38dcc92015-04-09 11:43:10 -0600321 tmp.sampler = sampler->obj();
Chia-I Wuf8385062015-01-04 16:27:24 +0800322 tmp.pImageView = &texture->m_textureViewInfo;
323 m_samplerTextureInfo.push_back(tmp);
Tony Barbourf43b6982014-11-25 13:18:32 -0700324
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600325 m_updateSamplerTextures.push_back(vk_testing::DescriptorSet::update(m_nextSlot, 0, 1,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600326 (const VkSamplerImageViewInfo *) NULL));
Tony Barbourf43b6982014-11-25 13:18:32 -0700327
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600328 // Track mem references for the texture referenced here
329 mem_ref_mgr.AddMemoryRefs(*texture);
330
Chia-I Wuf8385062015-01-04 16:27:24 +0800331 return m_nextSlot++;
Tony Barbourf43b6982014-11-25 13:18:32 -0700332}
Chia-I Wuf8385062015-01-04 16:27:24 +0800333
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600334VkDescriptorSetLayoutChain VkDescriptorSetObj::GetLayoutChain() const
Tony Barbour3edb6ac2014-12-17 10:54:03 -0700335{
Chia-I Wu7732cb22015-03-26 15:27:55 +0800336 return m_layout_chain.obj();
Tony Barbour3edb6ac2014-12-17 10:54:03 -0700337}
338
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600339VkDescriptorSet VkDescriptorSetObj::GetDescriptorSetHandle() const
Tony Barbour3edb6ac2014-12-17 10:54:03 -0700340{
Chia-I Wuf8385062015-01-04 16:27:24 +0800341 return m_set->obj();
Tony Barbour3edb6ac2014-12-17 10:54:03 -0700342}
Tony Barbourf43b6982014-11-25 13:18:32 -0700343
Tony Barbour01999182015-04-09 12:58:51 -0600344void VkDescriptorSetObj::CreateVKDescriptorSet(VkCommandBufferObj *cmdBuffer)
Tony Barboura5712982014-12-18 17:06:21 -0700345{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600346 // create VkDescriptorPool
347 VkDescriptorPoolCreateInfo pool = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600348 pool.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
Chia-I Wu8d24b3b2015-03-26 13:14:16 +0800349 pool.count = m_type_counts.size();
350 pool.pTypeCount = &m_type_counts[0];
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600351 init(*m_device, VK_DESCRIPTOR_POOL_USAGE_ONE_SHOT, 1, pool);
Tony Barboura5712982014-12-18 17:06:21 -0700352
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600353 // create VkDescriptorSetLayout
354 vector<VkDescriptorSetLayoutBinding> bindings;
Chia-I Wufc9d9132015-03-26 15:04:41 +0800355 bindings.resize(m_type_counts.size());
Chia-I Wuf8385062015-01-04 16:27:24 +0800356 for (int i = 0; i < m_type_counts.size(); i++) {
Chia-I Wufc9d9132015-03-26 15:04:41 +0800357 bindings[i].descriptorType = m_type_counts[i].type;
358 bindings[i].count = m_type_counts[i].count;
Tony Barbour8205d902015-04-16 15:59:00 -0600359 bindings[i].stageFlags = VK_SHADER_STAGE_ALL;
Chia-I Wu310eece2015-03-27 12:56:09 +0800360 bindings[i].pImmutableSamplers = NULL;
Tony Barbourf43b6982014-11-25 13:18:32 -0700361 }
Chia-I Wu6ae4cfb2014-12-28 22:32:36 +0800362
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600363 // create VkDescriptorSetLayout
364 VkDescriptorSetLayoutCreateInfo layout = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600365 layout.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO;
Chia-I Wufc9d9132015-03-26 15:04:41 +0800366 layout.count = bindings.size();
367 layout.pBinding = &bindings[0];
368
Chia-I Wu7732cb22015-03-26 15:27:55 +0800369 m_layout.init(*m_device, layout);
370
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600371 vector<const vk_testing::DescriptorSetLayout *> layouts;
Chia-I Wu7732cb22015-03-26 15:27:55 +0800372 layouts.push_back(&m_layout);
373 m_layout_chain.init(*m_device, layouts);
Tony Barbourf43b6982014-11-25 13:18:32 -0700374
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600375 // create VkDescriptorSet
Mark Lobodzinskicf26e072015-04-16 11:44:05 -0500376 m_set = alloc_sets(*m_device, VK_DESCRIPTOR_SET_USAGE_STATIC, m_layout);
Chia-I Wuf8385062015-01-04 16:27:24 +0800377
Chia-I Wu7732cb22015-03-26 15:27:55 +0800378 // build the update array
379 vector<const void *> update_array;
Chia-I Wuf8385062015-01-04 16:27:24 +0800380
Chia-I Wu7732cb22015-03-26 15:27:55 +0800381 for (int i = 0; i < m_updateBuffers.size(); i++) {
382 update_array.push_back(&m_updateBuffers[i]);
Chia-I Wuf8385062015-01-04 16:27:24 +0800383 }
384 for (int i = 0; i < m_updateSamplerTextures.size(); i++) {
385 m_updateSamplerTextures[i].pSamplerImageViews = &m_samplerTextureInfo[i];
Chia-I Wu7732cb22015-03-26 15:27:55 +0800386 update_array.push_back(&m_updateSamplerTextures[i]);
Chia-I Wuf8385062015-01-04 16:27:24 +0800387 }
Chia-I Wuf8385062015-01-04 16:27:24 +0800388
389 // do the updates
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600390 m_device->begin_descriptor_pool_update(VK_DESCRIPTOR_UPDATE_MODE_FASTEST);
Chia-I Wuf8385062015-01-04 16:27:24 +0800391 clear_sets(*m_set);
Chia-I Wu7732cb22015-03-26 15:27:55 +0800392 m_set->update(update_array);
Chia-I Wu8d24b3b2015-03-26 13:14:16 +0800393 m_device->end_descriptor_pool_update(*cmdBuffer);
Tony Barbour342ae3b2014-12-03 13:59:18 -0700394}
Tony Barbourf43b6982014-11-25 13:18:32 -0700395
Tony Barbour01999182015-04-09 12:58:51 -0600396VkImageObj::VkImageObj(VkDeviceObj *dev)
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800397{
398 m_device = dev;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600399 m_imageInfo.view = VK_NULL_HANDLE;
400 m_imageInfo.layout = VK_IMAGE_LAYOUT_GENERAL;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800401}
402
Tony Barbour01999182015-04-09 12:58:51 -0600403void VkImageObj::ImageMemoryBarrier(
404 VkCommandBufferObj *cmd_buf,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600405 VkImageAspect aspect,
406 VkFlags output_mask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600407 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
408 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
409 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
410 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
411 VK_MEMORY_OUTPUT_COPY_BIT*/,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600412 VkFlags input_mask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600413 VK_MEMORY_INPUT_CPU_READ_BIT |
414 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
415 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
416 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
417 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
418 VK_MEMORY_INPUT_SHADER_READ_BIT |
419 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
420 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
421 VK_MEMORY_INPUT_COPY_BIT*/,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600422 VkImageLayout image_layout)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600423{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600424 const VkImageSubresourceRange subresourceRange = subresource_range(aspect, 0, 1, 0, 1);
425 VkImageMemoryBarrier barrier;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600426 barrier = image_memory_barrier(output_mask, input_mask, layout(), image_layout,
427 subresourceRange);
428
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600429 VkImageMemoryBarrier *pmemory_barrier = &barrier;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600430
Tony Barbour8205d902015-04-16 15:59:00 -0600431 VkPipeEvent pipe_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600432
433 // write barrier to the command buffer
Tony Barbour8205d902015-04-16 15:59:00 -0600434 vkCmdPipelineBarrier(cmd_buf->obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, pipe_events, 1, (const void **)&pmemory_barrier);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600435}
436
Tony Barbour01999182015-04-09 12:58:51 -0600437void VkImageObj::SetLayout(VkCommandBufferObj *cmd_buf,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600438 VkImageAspect aspect,
439 VkImageLayout image_layout)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600440{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600441 VkFlags output_mask, input_mask;
442 const VkFlags all_cache_outputs =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600443 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
444 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
445 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
446 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600447 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600448 const VkFlags all_cache_inputs =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600449 VK_MEMORY_INPUT_CPU_READ_BIT |
450 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
451 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
452 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
453 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
454 VK_MEMORY_INPUT_SHADER_READ_BIT |
455 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
456 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600457 VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600458
459 if (image_layout == m_imageInfo.layout) {
460 return;
461 }
462
463 switch (image_layout) {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600464 case VK_IMAGE_LAYOUT_TRANSFER_SOURCE_OPTIMAL:
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600465 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
466 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600467 break;
468
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600469 case VK_IMAGE_LAYOUT_TRANSFER_DESTINATION_OPTIMAL:
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600470 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
471 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600472 break;
473
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600474 case VK_IMAGE_LAYOUT_CLEAR_OPTIMAL:
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600475 break;
476
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600477 case VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL:
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600478 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
479 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600480 break;
481
482 default:
483 output_mask = all_cache_outputs;
484 input_mask = all_cache_inputs;
485 break;
486 }
487
488 ImageMemoryBarrier(cmd_buf, aspect, output_mask, input_mask, image_layout);
489 m_imageInfo.layout = image_layout;
490}
491
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600492void VkImageObj::SetLayout(VkImageAspect aspect,
493 VkImageLayout image_layout)
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600494{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600495 VkResult err;
Tony Barbour01999182015-04-09 12:58:51 -0600496 VkCommandBufferObj cmd_buf(m_device);
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600497
498 /* Build command buffer to set image layout in the driver */
499 err = cmd_buf.BeginCommandBuffer();
500 assert(!err);
501
502 SetLayout(&cmd_buf, aspect, image_layout);
503
504 err = cmd_buf.EndCommandBuffer();
505 assert(!err);
506
507 cmd_buf.QueueCommandBuffer();
508}
509
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600510bool VkImageObj::IsCompatible(VkFlags usage, VkFlags features)
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600511{
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600512 if ((usage & VK_IMAGE_USAGE_SAMPLED_BIT) &&
Tony Barbour8205d902015-04-16 15:59:00 -0600513 !(features & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT))
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600514 return false;
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600515
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600516 return true;
517}
518
Tony Barbour01999182015-04-09 12:58:51 -0600519void VkImageObj::init(uint32_t w, uint32_t h,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600520 VkFormat fmt, VkFlags usage,
521 VkImageTiling requested_tiling)
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800522{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -0600523 uint32_t mipCount;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600524 VkFormatProperties image_fmt;
525 VkImageTiling tiling;
526 VkResult err;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600527 size_t size;
528
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800529 mipCount = 0;
530
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -0600531 uint32_t _w = w;
532 uint32_t _h = h;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800533 while( ( _w > 0 ) || ( _h > 0 ) )
534 {
535 _w >>= 1;
536 _h >>= 1;
537 mipCount++;
538 }
539
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600540 size = sizeof(image_fmt);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600541 err = vkGetFormatInfo(m_device->obj(), fmt,
Tony Barbour8205d902015-04-16 15:59:00 -0600542 VK_FORMAT_INFO_TYPE_PROPERTIES,
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600543 &size, &image_fmt);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600544 ASSERT_VK_SUCCESS(err);
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600545
Tony Barbour8205d902015-04-16 15:59:00 -0600546 if (requested_tiling == VK_IMAGE_TILING_LINEAR) {
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600547 if (IsCompatible(usage, image_fmt.linearTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600548 tiling = VK_IMAGE_TILING_LINEAR;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600549 } else if (IsCompatible(usage, image_fmt.optimalTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600550 tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600551 } else {
552 ASSERT_TRUE(false) << "Error: Cannot find requested tiling configuration";
553 }
554 } else if (IsCompatible(usage, image_fmt.optimalTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600555 tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600556 } else if (IsCompatible(usage, image_fmt.linearTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600557 tiling = VK_IMAGE_TILING_LINEAR;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600558 } else {
559 ASSERT_TRUE(false) << "Error: Cannot find requested tiling configuration";
560 }
561
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600562 VkImageCreateInfo imageCreateInfo = vk_testing::Image::create_info();
Tony Barbour8205d902015-04-16 15:59:00 -0600563 imageCreateInfo.imageType = VK_IMAGE_TYPE_2D;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800564 imageCreateInfo.format = fmt;
565 imageCreateInfo.extent.width = w;
566 imageCreateInfo.extent.height = h;
567 imageCreateInfo.mipLevels = mipCount;
568 imageCreateInfo.tiling = tiling;
569
570 imageCreateInfo.usage = usage;
571
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600572 vk_testing::Image::init(*m_device, imageCreateInfo);
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800573
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600574 if (usage & VK_IMAGE_USAGE_SAMPLED_BIT) {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600575 SetLayout(VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL);
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600576 } else {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600577 SetLayout(VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_GENERAL);
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600578 }
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800579}
580
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600581VkResult VkImageObj::MapMemory(void** ptr)
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800582{
583 *ptr = map();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600584 return (*ptr) ? VK_SUCCESS : VK_ERROR_UNKNOWN;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800585}
586
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600587VkResult VkImageObj::UnmapMemory()
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800588{
589 unmap();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600590 return VK_SUCCESS;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800591}
592
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600593VkResult VkImageObj::CopyImage(VkImageObj &src_image)
Tony Barbour16b71bc2015-04-01 17:47:06 -0600594{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600595 VkResult err;
Tony Barbour01999182015-04-09 12:58:51 -0600596 VkCommandBufferObj cmd_buf(m_device);
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600597 VkImageLayout src_image_layout, dest_image_layout;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600598
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600599 /* Build command buffer to copy staging texture to usable texture */
600 err = cmd_buf.BeginCommandBuffer();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600601 assert(!err);
602
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600603 /* TODO: Can we determine image aspect from image object? */
604 src_image_layout = src_image.layout();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600605 src_image.SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_TRANSFER_SOURCE_OPTIMAL);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600606
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600607 dest_image_layout = this->layout();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600608 this->SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_TRANSFER_DESTINATION_OPTIMAL);
Tony Barbour17c6ab12015-03-27 17:03:18 -0600609
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600610 VkImageCopy copy_region = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600611 copy_region.srcSubresource.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600612 copy_region.srcSubresource.arraySlice = 0;
613 copy_region.srcSubresource.mipLevel = 0;
614 copy_region.srcOffset.x = 0;
615 copy_region.srcOffset.y = 0;
616 copy_region.srcOffset.z = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600617 copy_region.destSubresource.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600618 copy_region.destSubresource.arraySlice = 0;
619 copy_region.destSubresource.mipLevel = 0;
620 copy_region.destOffset.x = 0;
621 copy_region.destOffset.y = 0;
622 copy_region.destOffset.z = 0;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600623 copy_region.extent = src_image.extent();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600624
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600625 vkCmdCopyImage(cmd_buf.obj(),
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600626 src_image.obj(), src_image.layout(),
627 obj(), layout(),
Tony Barbour17c6ab12015-03-27 17:03:18 -0600628 1, &copy_region);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600629 cmd_buf.mem_ref_mgr.AddMemoryRefs(src_image);
630 cmd_buf.mem_ref_mgr.AddMemoryRefs(*this);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600631
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600632 src_image.SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, src_image_layout);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600633
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600634 this->SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, dest_image_layout);
Tony Barbour17c6ab12015-03-27 17:03:18 -0600635
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600636 err = cmd_buf.EndCommandBuffer();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600637 assert(!err);
638
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600639 cmd_buf.QueueCommandBuffer();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600640
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600641 return VK_SUCCESS;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600642}
643
Tony Barbour01999182015-04-09 12:58:51 -0600644VkTextureObj::VkTextureObj(VkDeviceObj *device, uint32_t *colors)
645 :VkImageObj(device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700646{
647 m_device = device;
Tony Barbour8205d902015-04-16 15:59:00 -0600648 const VkFormat tex_format = VK_FORMAT_B8G8R8A8_UNORM;
Tony Barbour2f421a02015-04-01 16:38:10 -0600649 uint32_t tex_colors[2] = { 0xffff0000, 0xff00ff00 };
Tony Barbour16b71bc2015-04-01 17:47:06 -0600650 void *data;
651 int32_t x, y;
Tony Barbour01999182015-04-09 12:58:51 -0600652 VkImageObj stagingImage(device);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600653
Tony Barbour8205d902015-04-16 15:59:00 -0600654 stagingImage.init(16, 16, tex_format, 0, VK_IMAGE_TILING_LINEAR);
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600655 VkSubresourceLayout layout = stagingImage.subresource_layout(subresource(VK_IMAGE_ASPECT_COLOR, 0, 0));
Tony Barbour2f421a02015-04-01 16:38:10 -0600656
657 if (colors == NULL)
658 colors = tex_colors;
Tony Barbourf43b6982014-11-25 13:18:32 -0700659
660 memset(&m_textureViewInfo,0,sizeof(m_textureViewInfo));
661
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600662 m_textureViewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_ATTACH_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700663
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600664 VkImageViewCreateInfo view = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600665 view.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600666 view.pNext = NULL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600667 view.image = VK_NULL_HANDLE;
Tony Barbour8205d902015-04-16 15:59:00 -0600668 view.viewType = VK_IMAGE_VIEW_TYPE_2D;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600669 view.format = tex_format;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600670 view.channels.r = VK_CHANNEL_SWIZZLE_R;
671 view.channels.g = VK_CHANNEL_SWIZZLE_G;
672 view.channels.b = VK_CHANNEL_SWIZZLE_B;
673 view.channels.a = VK_CHANNEL_SWIZZLE_A;
674 view.subresourceRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600675 view.subresourceRange.baseMipLevel = 0;
676 view.subresourceRange.mipLevels = 1;
677 view.subresourceRange.baseArraySlice = 0;
678 view.subresourceRange.arraySize = 1;
679 view.minLod = 0.0f;
Tony Barbourf43b6982014-11-25 13:18:32 -0700680
Tony Barbourf43b6982014-11-25 13:18:32 -0700681 /* create image */
Tony Barbour8205d902015-04-16 15:59:00 -0600682 init(16, 16, tex_format, VK_IMAGE_USAGE_SAMPLED_BIT, VK_IMAGE_TILING_OPTIMAL);
Tony Barbourf43b6982014-11-25 13:18:32 -0700683
684 /* create image view */
Chia-I Wudbec1222014-12-28 15:55:09 +0800685 view.image = obj();
686 m_textureView.init(*m_device, view);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600687 m_textureViewInfo.view = m_textureView.obj();
Tony Barbourf43b6982014-11-25 13:18:32 -0700688
Tony Barbour16b71bc2015-04-01 17:47:06 -0600689 data = stagingImage.map();
Tony Barbourf43b6982014-11-25 13:18:32 -0700690
Chia-I Wudbec1222014-12-28 15:55:09 +0800691 for (y = 0; y < extent().height; y++) {
Tony Barbourf43b6982014-11-25 13:18:32 -0700692 uint32_t *row = (uint32_t *) ((char *) data + layout.rowPitch * y);
Chia-I Wudbec1222014-12-28 15:55:09 +0800693 for (x = 0; x < extent().width; x++)
Tony Barbour2f421a02015-04-01 16:38:10 -0600694 row[x] = colors[(x & 1) ^ (y & 1)];
Tony Barbourf43b6982014-11-25 13:18:32 -0700695 }
Tony Barbour16b71bc2015-04-01 17:47:06 -0600696 stagingImage.unmap();
Tony Barbour01999182015-04-09 12:58:51 -0600697 VkImageObj::CopyImage(stagingImage);
Tony Barbourf43b6982014-11-25 13:18:32 -0700698}
Tony Barbour408ca622014-12-04 14:33:33 -0700699
Tony Barbour01999182015-04-09 12:58:51 -0600700VkSamplerObj::VkSamplerObj(VkDeviceObj *device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700701{
Tony Barbourf43b6982014-11-25 13:18:32 -0700702 m_device = device;
Tony Barbourf43b6982014-11-25 13:18:32 -0700703
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600704 VkSamplerCreateInfo samplerCreateInfo;
Chia-I Wua64266a2014-12-28 16:32:24 +0800705 memset(&samplerCreateInfo,0,sizeof(samplerCreateInfo));
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600706 samplerCreateInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO;
707 samplerCreateInfo.magFilter = VK_TEX_FILTER_NEAREST;
708 samplerCreateInfo.minFilter = VK_TEX_FILTER_NEAREST;
Tony Barbour8205d902015-04-16 15:59:00 -0600709 samplerCreateInfo.mipMode = VK_TEX_MIPMAP_MODE_BASE;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600710 samplerCreateInfo.addressU = VK_TEX_ADDRESS_WRAP;
711 samplerCreateInfo.addressV = VK_TEX_ADDRESS_WRAP;
712 samplerCreateInfo.addressW = VK_TEX_ADDRESS_WRAP;
Chia-I Wua64266a2014-12-28 16:32:24 +0800713 samplerCreateInfo.mipLodBias = 0.0;
714 samplerCreateInfo.maxAnisotropy = 0.0;
Tony Barbour8205d902015-04-16 15:59:00 -0600715 samplerCreateInfo.compareOp = VK_COMPARE_OP_NEVER;
Chia-I Wua64266a2014-12-28 16:32:24 +0800716 samplerCreateInfo.minLod = 0.0;
717 samplerCreateInfo.maxLod = 0.0;
Tony Barbour8205d902015-04-16 15:59:00 -0600718 samplerCreateInfo.borderColor = VK_BORDER_COLOR_OPAQUE_WHITE;
Tony Barbourf43b6982014-11-25 13:18:32 -0700719
Chia-I Wua64266a2014-12-28 16:32:24 +0800720 init(*m_device, samplerCreateInfo);
Tony Barbour2cb6bf52014-12-03 15:59:38 -0700721}
Tony Barbourf43b6982014-11-25 13:18:32 -0700722
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700723/*
724 * Basic ConstantBuffer constructor. Then use create methods to fill in the details.
725 */
Tony Barbour01999182015-04-09 12:58:51 -0600726VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device)
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700727{
728 m_device = device;
Tony Barbour9f47dc72014-12-10 14:36:31 -0700729 m_commandBuffer = 0;
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700730
Chia-I Wu714df452015-01-01 07:55:04 +0800731 memset(&m_bufferViewInfo,0,sizeof(m_bufferViewInfo));
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700732}
733
Tony Barbour01999182015-04-09 12:58:51 -0600734VkConstantBufferObj::~VkConstantBufferObj()
Tony Barbour864c0332015-03-26 12:37:52 -0600735{
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600736 // TODO: Should we call QueueRemoveMemReference for the constant buffer memory here?
Tony Barbour864c0332015-03-26 12:37:52 -0600737 if (m_commandBuffer) {
738 delete m_commandBuffer;
739 }
740}
741
Tony Barbour01999182015-04-09 12:58:51 -0600742VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, int constantCount, int constantSize, const void* data)
Tony Barbourf43b6982014-11-25 13:18:32 -0700743{
Tony Barbourf43b6982014-11-25 13:18:32 -0700744 m_device = device;
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800745 m_commandBuffer = 0;
746
Chia-I Wu714df452015-01-01 07:55:04 +0800747 memset(&m_bufferViewInfo,0,sizeof(m_bufferViewInfo));
Tony Barbourf43b6982014-11-25 13:18:32 -0700748 m_numVertices = constantCount;
749 m_stride = constantSize;
750
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800751 const size_t allocationSize = constantCount * constantSize;
752 init(*m_device, allocationSize);
Tony Barbourf43b6982014-11-25 13:18:32 -0700753
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800754 void *pData = map();
755 memcpy(pData, data, allocationSize);
756 unmap();
Tony Barbourf43b6982014-11-25 13:18:32 -0700757
Chia-I Wu714df452015-01-01 07:55:04 +0800758 // set up the buffer view for the constant buffer
Courtney Goeltzenleuchterddcb6192015-04-14 18:48:46 -0600759 VkBufferViewCreateInfo view_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600760 view_info.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800761 view_info.buffer = obj();
Tony Barbour8205d902015-04-16 15:59:00 -0600762 view_info.viewType = VK_BUFFER_VIEW_TYPE_RAW;
Chia-I Wu714df452015-01-01 07:55:04 +0800763 view_info.offset = 0;
764 view_info.range = allocationSize;
765 m_bufferView.init(*m_device, view_info);
766
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600767 this->m_bufferViewInfo.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_ATTACH_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800768 this->m_bufferViewInfo.view = m_bufferView.obj();
Tony Barbourf43b6982014-11-25 13:18:32 -0700769}
Tony Barbour408ca622014-12-04 14:33:33 -0700770
Tony Barbour8205d902015-04-16 15:59:00 -0600771void VkConstantBufferObj::Bind(VkCmdBuffer cmdBuffer, VkDeviceSize offset, uint32_t binding)
Courtney Goeltzenleuchter7715bc42014-12-04 15:26:56 -0700772{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -0600773 vkCmdBindVertexBuffers(cmdBuffer, binding, 1, &obj(), &offset);
Courtney Goeltzenleuchter7715bc42014-12-04 15:26:56 -0700774}
775
776
Tony Barbour01999182015-04-09 12:58:51 -0600777void VkConstantBufferObj::BufferMemoryBarrier(
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600778 VkFlags outputMask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600779 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
780 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
781 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
782 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
783 VK_MEMORY_OUTPUT_COPY_BIT*/,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600784 VkFlags inputMask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600785 VK_MEMORY_INPUT_CPU_READ_BIT |
786 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
787 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
788 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
789 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
790 VK_MEMORY_INPUT_SHADER_READ_BIT |
791 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
792 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
793 VK_MEMORY_INPUT_COPY_BIT*/)
Tony Barbourf43b6982014-11-25 13:18:32 -0700794{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600795 VkResult err = VK_SUCCESS;
Tony Barbour9f47dc72014-12-10 14:36:31 -0700796
Tony Barbour9f47dc72014-12-10 14:36:31 -0700797 if (!m_commandBuffer)
798 {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600799 m_fence.init(*m_device, vk_testing::Fence::create_info());
Tony Barbour9f47dc72014-12-10 14:36:31 -0700800
Tony Barbour01999182015-04-09 12:58:51 -0600801 m_commandBuffer = new VkCommandBufferObj(m_device);
Tony Barbour9f47dc72014-12-10 14:36:31 -0700802 }
803 else
804 {
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800805 m_device->wait(m_fence);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600806 m_commandBuffer->mem_ref_mgr.EmitRemoveMemoryRefs(m_device->m_queue);
Tony Barbour9f47dc72014-12-10 14:36:31 -0700807 }
808
Tony Barbourf43b6982014-11-25 13:18:32 -0700809 // open the command buffer
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600810 VkCmdBufferBeginInfo cmd_buf_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600811 cmd_buf_info.sType = VK_STRUCTURE_TYPE_CMD_BUFFER_BEGIN_INFO;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600812 cmd_buf_info.pNext = NULL;
813 cmd_buf_info.flags = 0;
814
Jon Ashburn744b8cf2014-12-31 17:10:47 -0700815 err = m_commandBuffer->BeginCommandBuffer(&cmd_buf_info);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600816 ASSERT_VK_SUCCESS(err);
Tony Barbourf43b6982014-11-25 13:18:32 -0700817
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600818 VkBufferMemoryBarrier memory_barrier =
Mike Stroyan55658c22014-12-04 11:08:39 +0000819 buffer_memory_barrier(outputMask, inputMask, 0, m_numVertices * m_stride);
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600820 VkBufferMemoryBarrier *pmemory_barrier = &memory_barrier;
Tony Barbourf43b6982014-11-25 13:18:32 -0700821
Tony Barbour8205d902015-04-16 15:59:00 -0600822 VkPipeEvent set_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Mike Stroyan55658c22014-12-04 11:08:39 +0000823
824 // write barrier to the command buffer
Tony Barbour8205d902015-04-16 15:59:00 -0600825 m_commandBuffer->PipelineBarrier(VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Tony Barbourf43b6982014-11-25 13:18:32 -0700826
827 // finish recording the command buffer
Tony Barboure8f14162014-12-10 17:28:39 -0700828 err = m_commandBuffer->EndCommandBuffer();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600829 ASSERT_VK_SUCCESS(err);
Tony Barbourf43b6982014-11-25 13:18:32 -0700830
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600831 /*
832 * Tell driver about memory references made in this command buffer
833 * Note: Since this command buffer only has a PipelineBarrier
834 * command there really aren't any memory refs to worry about.
835 */
836 m_commandBuffer->mem_ref_mgr.EmitAddMemoryRefs(m_device->m_queue);
Tony Barbourf43b6982014-11-25 13:18:32 -0700837
838 // submit the command buffer to the universal queue
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600839 VkCmdBuffer bufferArray[1];
Tony Barboure8f14162014-12-10 17:28:39 -0700840 bufferArray[0] = m_commandBuffer->GetBufferHandle();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600841 err = vkQueueSubmit( m_device->m_queue, 1, bufferArray, m_fence.obj() );
842 ASSERT_VK_SUCCESS(err);
Tony Barbourf43b6982014-11-25 13:18:32 -0700843}
844
Tony Barbour01999182015-04-09 12:58:51 -0600845VkIndexBufferObj::VkIndexBufferObj(VkDeviceObj *device)
846 : VkConstantBufferObj(device)
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700847{
848
849}
850
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600851void VkIndexBufferObj::CreateAndInitBuffer(int numIndexes, VkIndexType indexType, const void* data)
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700852{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600853 VkFormat viewFormat;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700854
855 m_numVertices = numIndexes;
856 m_indexType = indexType;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700857 switch (indexType) {
Tony Barbour8205d902015-04-16 15:59:00 -0600858 case VK_INDEX_TYPE_UINT8:
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700859 m_stride = 1;
Tony Barbour8205d902015-04-16 15:59:00 -0600860 viewFormat = VK_FORMAT_R8_UINT;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700861 break;
Tony Barbour8205d902015-04-16 15:59:00 -0600862 case VK_INDEX_TYPE_UINT16:
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700863 m_stride = 2;
Tony Barbour8205d902015-04-16 15:59:00 -0600864 viewFormat = VK_FORMAT_R16_UINT;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700865 break;
Tony Barbour8205d902015-04-16 15:59:00 -0600866 case VK_INDEX_TYPE_UINT32:
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700867 m_stride = 4;
Tony Barbour8205d902015-04-16 15:59:00 -0600868 viewFormat = VK_FORMAT_R32_UINT;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700869 break;
Chia-I Wubbdeacc2014-12-15 23:50:11 +0800870 default:
871 assert(!"unknown index type");
872 break;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700873 }
874
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800875 const size_t allocationSize = numIndexes * m_stride;
876 init(*m_device, allocationSize);
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700877
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800878 void *pData = map();
879 memcpy(pData, data, allocationSize);
880 unmap();
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700881
Chia-I Wu714df452015-01-01 07:55:04 +0800882 // set up the buffer view for the constant buffer
Courtney Goeltzenleuchterddcb6192015-04-14 18:48:46 -0600883 VkBufferViewCreateInfo view_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600884 view_info.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800885 view_info.buffer = obj();
Tony Barbour8205d902015-04-16 15:59:00 -0600886 view_info.viewType = VK_BUFFER_VIEW_TYPE_FORMATTED;
Jeremy Hayes2b7e88a2015-01-23 08:51:43 -0700887 view_info.format = viewFormat;
Chia-I Wu714df452015-01-01 07:55:04 +0800888 view_info.offset = 0;
889 view_info.range = allocationSize;
890 m_bufferView.init(*m_device, view_info);
891
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600892 this->m_bufferViewInfo.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_ATTACH_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800893 this->m_bufferViewInfo.view = m_bufferView.obj();
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700894}
895
Tony Barbour8205d902015-04-16 15:59:00 -0600896void VkIndexBufferObj::Bind(VkCmdBuffer cmdBuffer, VkDeviceSize offset)
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700897{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600898 vkCmdBindIndexBuffer(cmdBuffer, obj(), offset, m_indexType);
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700899}
Tony Barbourf43b6982014-11-25 13:18:32 -0700900
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600901VkIndexType VkIndexBufferObj::GetIndexType()
Tony Barbour140a59f2014-12-17 10:57:58 -0700902{
903 return m_indexType;
904}
905
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600906VkPipelineShaderStageCreateInfo* VkShaderObj::GetStageCreateInfo()
Tony Barbourf43b6982014-11-25 13:18:32 -0700907{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600908 VkPipelineShaderStageCreateInfo *stageInfo = (VkPipelineShaderStageCreateInfo*) calloc( 1,sizeof(VkPipelineShaderStageCreateInfo) );
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600909 stageInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700910 stageInfo->shader.stage = m_stage;
Chia-I Wuc2c31082014-12-29 14:14:03 +0800911 stageInfo->shader.shader = obj();
Tony Barbourf43b6982014-11-25 13:18:32 -0700912 stageInfo->shader.linkConstBufferCount = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600913 stageInfo->shader.pLinkConstBufferInfo = VK_NULL_HANDLE;
Tony Barbourf43b6982014-11-25 13:18:32 -0700914
Tony Barbourf43b6982014-11-25 13:18:32 -0700915 return stageInfo;
916}
917
Tony Barbour8205d902015-04-16 15:59:00 -0600918VkShaderObj::VkShaderObj(VkDeviceObj *device, const char * shader_code, VkShaderStage stage, VkRenderFramework *framework)
Tony Barbourf43b6982014-11-25 13:18:32 -0700919{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600920 VkResult err = VK_SUCCESS;
Cody Northropacfb0492015-03-17 15:55:58 -0600921 std::vector<unsigned int> spv;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600922 VkShaderCreateInfo createInfo;
Tony Barbourf43b6982014-11-25 13:18:32 -0700923 size_t shader_len;
924
925 m_stage = stage;
926 m_device = device;
927
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600928 createInfo.sType = VK_STRUCTURE_TYPE_SHADER_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700929 createInfo.pNext = NULL;
930
Cody Northropacfb0492015-03-17 15:55:58 -0600931 if (!framework->m_use_spv) {
Tony Barbourf43b6982014-11-25 13:18:32 -0700932
933 shader_len = strlen(shader_code);
934 createInfo.codeSize = 3 * sizeof(uint32_t) + shader_len + 1;
935 createInfo.pCode = malloc(createInfo.codeSize);
936 createInfo.flags = 0;
937
Tony Barbour8205d902015-04-16 15:59:00 -0600938 /* try version 0 first: VkShaderStage followed by GLSL */
Cody Northropacfb0492015-03-17 15:55:58 -0600939 ((uint32_t *) createInfo.pCode)[0] = ICD_SPV_MAGIC;
Tony Barbourf43b6982014-11-25 13:18:32 -0700940 ((uint32_t *) createInfo.pCode)[1] = 0;
941 ((uint32_t *) createInfo.pCode)[2] = stage;
942 memcpy(((uint32_t *) createInfo.pCode + 3), shader_code, shader_len + 1);
943
Chia-I Wuc2c31082014-12-29 14:14:03 +0800944 err = init_try(*m_device, createInfo);
Tony Barbourf43b6982014-11-25 13:18:32 -0700945 }
946
Cody Northropacfb0492015-03-17 15:55:58 -0600947 if (framework->m_use_spv || err) {
948 std::vector<unsigned int> spv;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600949 err = VK_SUCCESS;
Tony Barbourf43b6982014-11-25 13:18:32 -0700950
Cody Northropacfb0492015-03-17 15:55:58 -0600951 // Use Reference GLSL to SPV compiler
952 framework->GLSLtoSPV(stage, shader_code, spv);
953 createInfo.pCode = spv.data();
954 createInfo.codeSize = spv.size() * sizeof(unsigned int);
Tony Barbourf43b6982014-11-25 13:18:32 -0700955 createInfo.flags = 0;
Tony Barbour408ca622014-12-04 14:33:33 -0700956
Chia-I Wuc2c31082014-12-29 14:14:03 +0800957 init(*m_device, createInfo);
958 }
Tony Barbour2cb6bf52014-12-03 15:59:38 -0700959}
Tony Barbour408ca622014-12-04 14:33:33 -0700960
Tony Barbour01999182015-04-09 12:58:51 -0600961VkPipelineObj::VkPipelineObj(VkDeviceObj *device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700962{
Tony Barbourf43b6982014-11-25 13:18:32 -0700963 m_device = device;
964 m_vi_state.attributeCount = m_vi_state.bindingCount = 0;
965 m_vertexBufferCount = 0;
966
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600967 m_ia_state.sType = VK_STRUCTURE_TYPE_PIPELINE_IA_STATE_CREATE_INFO;
968 m_ia_state.pNext = VK_NULL_HANDLE;
Tony Barbour8205d902015-04-16 15:59:00 -0600969 m_ia_state.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600970 m_ia_state.disableVertexReuse = VK_FALSE;
971 m_ia_state.primitiveRestartEnable = VK_FALSE;
Tony Barbourf43b6982014-11-25 13:18:32 -0700972 m_ia_state.primitiveRestartIndex = 0;
973
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600974 m_rs_state.sType = VK_STRUCTURE_TYPE_PIPELINE_RS_STATE_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700975 m_rs_state.pNext = &m_ia_state;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600976 m_rs_state.depthClipEnable = VK_FALSE;
977 m_rs_state.rasterizerDiscardEnable = VK_FALSE;
978 m_rs_state.programPointSize = VK_FALSE;
979 m_rs_state.pointOrigin = VK_COORDINATE_ORIGIN_UPPER_LEFT;
980 m_rs_state.provokingVertex = VK_PROVOKING_VERTEX_LAST;
Tony Barbour8205d902015-04-16 15:59:00 -0600981 m_rs_state.fillMode = VK_FILL_MODE_SOLID;
982 m_rs_state.cullMode = VK_CULL_MODE_NONE;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600983 m_rs_state.frontFace = VK_FRONT_FACE_CCW;
Tony Barbourf43b6982014-11-25 13:18:32 -0700984
Tony Barbourf43b6982014-11-25 13:18:32 -0700985 memset(&m_cb_state,0,sizeof(m_cb_state));
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600986 m_cb_state.sType = VK_STRUCTURE_TYPE_PIPELINE_CB_STATE_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700987 m_cb_state.pNext = &m_rs_state;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600988 m_cb_state.alphaToCoverageEnable = VK_FALSE;
989 m_cb_state.logicOp = VK_LOGIC_OP_COPY;
Tony Barbourf43b6982014-11-25 13:18:32 -0700990
Tony Barbourfa6cac72015-01-16 14:27:35 -0700991 m_ms_state.pNext = &m_cb_state;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600992 m_ms_state.sType = VK_STRUCTURE_TYPE_PIPELINE_MS_STATE_CREATE_INFO;
993 m_ms_state.multisampleEnable = VK_FALSE;
Tony Barbourfa6cac72015-01-16 14:27:35 -0700994 m_ms_state.sampleMask = 1; // Do we have to specify MSAA even just to disable it?
995 m_ms_state.samples = 1;
996 m_ms_state.minSampleShading = 0;
997 m_ms_state.sampleShadingEnable = 0;
Tony Barbourf43b6982014-11-25 13:18:32 -0700998
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600999 m_ds_state.sType = VK_STRUCTURE_TYPE_PIPELINE_DS_STATE_CREATE_INFO;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001000 m_ds_state.pNext = &m_ms_state,
Tony Barbour8205d902015-04-16 15:59:00 -06001001 m_ds_state.format = VK_FORMAT_D32_SFLOAT;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001002 m_ds_state.depthTestEnable = VK_FALSE;
1003 m_ds_state.depthWriteEnable = VK_FALSE;
1004 m_ds_state.depthBoundsEnable = VK_FALSE;
Tony Barbour8205d902015-04-16 15:59:00 -06001005 m_ds_state.depthCompareOp = VK_COMPARE_OP_LESS_EQUAL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001006 m_ds_state.back.stencilDepthFailOp = VK_STENCIL_OP_KEEP;
1007 m_ds_state.back.stencilFailOp = VK_STENCIL_OP_KEEP;
1008 m_ds_state.back.stencilPassOp = VK_STENCIL_OP_KEEP;
Tony Barbour8205d902015-04-16 15:59:00 -06001009 m_ds_state.back.stencilCompareOp = VK_COMPARE_OP_ALWAYS;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001010 m_ds_state.stencilTestEnable = VK_FALSE;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001011 m_ds_state.front = m_ds_state.back;
Tony Barbourf43b6982014-11-25 13:18:32 -07001012
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001013 VkPipelineCbAttachmentState att = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001014 att.blendEnable = VK_FALSE;
Tony Barbour8205d902015-04-16 15:59:00 -06001015 att.format = VK_FORMAT_B8G8R8A8_UNORM;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001016 att.channelWriteMask = 0xf;
1017 AddColorAttachment(0, &att);
Tony Barbourf43b6982014-11-25 13:18:32 -07001018
1019};
1020
Tony Barbour01999182015-04-09 12:58:51 -06001021void VkPipelineObj::AddShader(VkShaderObj* shader)
Tony Barbourf43b6982014-11-25 13:18:32 -07001022{
1023 m_shaderObjs.push_back(shader);
1024}
1025
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001026void VkPipelineObj::AddVertexInputAttribs(VkVertexInputAttributeDescription* vi_attrib, int count)
Tony Barbourf43b6982014-11-25 13:18:32 -07001027{
1028 m_vi_state.pVertexAttributeDescriptions = vi_attrib;
1029 m_vi_state.attributeCount = count;
1030}
1031
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001032void VkPipelineObj::AddVertexInputBindings(VkVertexInputBindingDescription* vi_binding, int count)
Tony Barbourf43b6982014-11-25 13:18:32 -07001033{
1034 m_vi_state.pVertexBindingDescriptions = vi_binding;
1035 m_vi_state.bindingCount = count;
1036}
1037
Tony Barbour01999182015-04-09 12:58:51 -06001038void VkPipelineObj::AddVertexDataBuffer(VkConstantBufferObj* vertexDataBuffer, int binding)
Tony Barbourf43b6982014-11-25 13:18:32 -07001039{
1040 m_vertexBufferObjs.push_back(vertexDataBuffer);
1041 m_vertexBufferBindings.push_back(binding);
1042 m_vertexBufferCount++;
1043}
1044
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001045void VkPipelineObj::AddColorAttachment(uint32_t binding, const VkPipelineCbAttachmentState *att)
Chia-I Wue7748802014-12-05 10:45:15 +08001046{
Tony Barbourfa6cac72015-01-16 14:27:35 -07001047 if (binding+1 > m_colorAttachments.size())
1048 {
1049 m_colorAttachments.resize(binding+1);
1050 }
1051 m_colorAttachments[binding] = *att;
1052}
1053
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001054void VkPipelineObj::SetDepthStencil(VkPipelineDsStateCreateInfo *ds_state)
Tony Barbourfa6cac72015-01-16 14:27:35 -07001055{
1056 m_ds_state.format = ds_state->format;
1057 m_ds_state.depthTestEnable = ds_state->depthTestEnable;
1058 m_ds_state.depthWriteEnable = ds_state->depthWriteEnable;
1059 m_ds_state.depthBoundsEnable = ds_state->depthBoundsEnable;
Tony Barbour8205d902015-04-16 15:59:00 -06001060 m_ds_state.depthCompareOp = ds_state->depthCompareOp;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001061 m_ds_state.stencilTestEnable = ds_state->stencilTestEnable;
1062 m_ds_state.back = ds_state->back;
1063 m_ds_state.front = ds_state->front;
Chia-I Wue7748802014-12-05 10:45:15 +08001064}
1065
Tony Barbour01999182015-04-09 12:58:51 -06001066void VkPipelineObj::CreateVKPipeline(VkDescriptorSetObj &descriptorSet)
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001067{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -06001068 void* head_ptr = &m_ds_state;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001069 VkGraphicsPipelineCreateInfo info = {};
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001070
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001071 VkPipelineShaderStageCreateInfo* shaderCreateInfo;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001072
1073 for (int i=0; i<m_shaderObjs.size(); i++)
1074 {
Chia-I Wuf8385062015-01-04 16:27:24 +08001075 shaderCreateInfo = m_shaderObjs[i]->GetStageCreateInfo();
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001076 shaderCreateInfo->pNext = head_ptr;
1077 head_ptr = shaderCreateInfo;
1078 }
1079
1080 if (m_vi_state.attributeCount && m_vi_state.bindingCount)
1081 {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001082 m_vi_state.sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_CREATE_INFO;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001083 m_vi_state.pNext = head_ptr;
1084 head_ptr = &m_vi_state;
1085 }
1086
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001087 info.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001088 info.pNext = head_ptr;
1089 info.flags = 0;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001090 info.pSetLayoutChain = descriptorSet.GetLayoutChain();
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001091
Tony Barbourfa6cac72015-01-16 14:27:35 -07001092 m_cb_state.attachmentCount = m_colorAttachments.size();
1093 m_cb_state.pAttachments = &m_colorAttachments[0];
1094
Chia-I Wuf5d81872014-12-29 14:24:14 +08001095 init(*m_device, info);
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001096}
Chia-I Wuf5d81872014-12-29 14:24:14 +08001097
Tony Barbour8205d902015-04-16 15:59:00 -06001098vector<VkDeviceMemory> VkMemoryRefManager::mem_refs() const
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001099{
Tony Barbour8205d902015-04-16 15:59:00 -06001100 std::vector<VkDeviceMemory> mems;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001101 if (this->mem_refs_.size()) {
1102 mems.reserve(this->mem_refs_.size());
1103 for (uint32_t i = 0; i < this->mem_refs_.size(); i++)
1104 mems.push_back(this->mem_refs_[i]);
1105 }
1106
1107 return mems;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001108}
1109
Tony Barbour01999182015-04-09 12:58:51 -06001110void VkMemoryRefManager::AddMemoryRefs(vk_testing::Object &vkObject)
Tony Barbourf43b6982014-11-25 13:18:32 -07001111{
Tony Barbour8205d902015-04-16 15:59:00 -06001112 const std::vector<VkDeviceMemory> mems = vkObject.memories();
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001113 AddMemoryRefs(mems);
1114}
Tony Barbourf43b6982014-11-25 13:18:32 -07001115
Tony Barbour8205d902015-04-16 15:59:00 -06001116void VkMemoryRefManager::AddMemoryRefs(vector<VkDeviceMemory> mem)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001117{
1118 for (size_t i = 0; i < mem.size(); i++) {
1119 if (mem[i] != NULL) {
1120 this->mem_refs_.push_back(mem[i]);
1121 }
Tony Barbourf43b6982014-11-25 13:18:32 -07001122 }
Tony Barbourf43b6982014-11-25 13:18:32 -07001123}
Tony Barbour408ca622014-12-04 14:33:33 -07001124
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001125void VkMemoryRefManager::EmitAddMemoryRefs(VkQueue queue)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001126{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -06001127 vkQueueAddMemReferences(queue, mem_refs_.size(), &mem_refs_[0]);
Tony Barbourf43b6982014-11-25 13:18:32 -07001128}
Tony Barbour408ca622014-12-04 14:33:33 -07001129
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001130void VkMemoryRefManager::EmitRemoveMemoryRefs(VkQueue queue)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001131{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -06001132 vkQueueRemoveMemReferences(queue, mem_refs_.size(), &mem_refs_[0]);
Mark Lobodzinski15427102015-02-18 16:38:17 -06001133}
1134
Tony Barbour01999182015-04-09 12:58:51 -06001135VkCommandBufferObj::VkCommandBufferObj(VkDeviceObj *device)
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001136 : vk_testing::CmdBuffer(*device, vk_testing::CmdBuffer::create_info(device->graphics_queue_node_index_))
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001137{
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001138 m_device = device;
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001139}
Tony Barboure8f14162014-12-10 17:28:39 -07001140
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001141VkCmdBuffer VkCommandBufferObj::GetBufferHandle()
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001142{
Chia-I Wuae0564f2014-12-28 15:12:48 +08001143 return obj();
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001144}
Tony Barboure8f14162014-12-10 17:28:39 -07001145
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001146VkResult VkCommandBufferObj::BeginCommandBuffer(VkCmdBufferBeginInfo *pInfo)
Tony Barboure8f14162014-12-10 17:28:39 -07001147{
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001148 begin(pInfo);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001149 return VK_SUCCESS;
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001150}
1151
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001152VkResult VkCommandBufferObj::BeginCommandBuffer(VkRenderPass renderpass_obj, VkFramebuffer framebuffer_obj)
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001153{
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001154 begin(renderpass_obj, framebuffer_obj);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001155 return VK_SUCCESS;
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001156}
1157
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001158VkResult VkCommandBufferObj::BeginCommandBuffer()
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001159{
1160 begin();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001161 return VK_SUCCESS;
Tony Barboure8f14162014-12-10 17:28:39 -07001162}
1163
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001164VkResult VkCommandBufferObj::EndCommandBuffer()
Tony Barboure8f14162014-12-10 17:28:39 -07001165{
Chia-I Wuae0564f2014-12-28 15:12:48 +08001166 end();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001167 return VK_SUCCESS;
Tony Barboure8f14162014-12-10 17:28:39 -07001168}
1169
Tony Barbour8205d902015-04-16 15:59:00 -06001170void VkCommandBufferObj::PipelineBarrier(VkWaitEvent waitEvent, uint32_t pipeEventCount, const VkPipeEvent* pPipeEvents, uint32_t memBarrierCount, const void** ppMemBarriers)
Tony Barboure8f14162014-12-10 17:28:39 -07001171{
Tony Barbour8205d902015-04-16 15:59:00 -06001172 vkCmdPipelineBarrier(obj(), waitEvent, pipeEventCount, pPipeEvents, memBarrierCount, ppMemBarriers);
Tony Barboure8f14162014-12-10 17:28:39 -07001173}
1174
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001175void VkCommandBufferObj::ClearAllBuffers(VkClearColor clear_color, float depth_clear_color, uint32_t stencil_clear_color,
Tony Barbour01999182015-04-09 12:58:51 -06001176 VkDepthStencilObj *depthStencilObj)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001177{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -06001178 uint32_t i;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001179 const VkFlags output_mask =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001180 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
1181 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
1182 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
1183 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -06001184 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001185 const VkFlags input_mask = 0;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001186
1187 // whatever we want to do, we do it to the whole buffer
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001188 VkImageSubresourceRange srRange = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001189 srRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001190 srRange.baseMipLevel = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001191 srRange.mipLevels = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001192 srRange.baseArraySlice = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001193 srRange.arraySize = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001194
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001195 VkImageMemoryBarrier memory_barrier = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001196 memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
Mike Stroyan55658c22014-12-04 11:08:39 +00001197 memory_barrier.outputMask = output_mask;
1198 memory_barrier.inputMask = input_mask;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001199 memory_barrier.newLayout = VK_IMAGE_LAYOUT_CLEAR_OPTIMAL;
Mike Stroyan55658c22014-12-04 11:08:39 +00001200 memory_barrier.subresourceRange = srRange;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001201 VkImageMemoryBarrier *pmemory_barrier = &memory_barrier;
Mike Stroyan55658c22014-12-04 11:08:39 +00001202
Tony Barbour8205d902015-04-16 15:59:00 -06001203 VkPipeEvent set_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Mike Stroyan55658c22014-12-04 11:08:39 +00001204
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -07001205 for (i = 0; i < m_renderTargets.size(); i++) {
Mike Stroyan55658c22014-12-04 11:08:39 +00001206 memory_barrier.image = m_renderTargets[i]->image();
1207 memory_barrier.oldLayout = m_renderTargets[i]->layout();
Tony Barbour8205d902015-04-16 15:59:00 -06001208 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Mike Stroyan55658c22014-12-04 11:08:39 +00001209 m_renderTargets[i]->layout(memory_barrier.newLayout);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001210
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001211 vkCmdClearColorImage(obj(),
1212 m_renderTargets[i]->image(), VK_IMAGE_LAYOUT_CLEAR_OPTIMAL,
Courtney Goeltzenleuchter51cbf302015-03-25 11:25:10 -06001213 clear_color, 1, &srRange );
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001214
1215 mem_ref_mgr.AddMemoryRefs(*m_renderTargets[i]);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001216 }
1217
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001218 if (depthStencilObj)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001219 {
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001220 VkImageSubresourceRange dsRange = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001221 dsRange.aspect = VK_IMAGE_ASPECT_DEPTH;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001222 dsRange.baseMipLevel = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001223 dsRange.mipLevels = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001224 dsRange.baseArraySlice = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001225 dsRange.arraySize = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001226
1227 // prepare the depth buffer for clear
Mike Stroyan55658c22014-12-04 11:08:39 +00001228
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001229 memory_barrier.oldLayout = depthStencilObj->BindInfo()->layout;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001230 memory_barrier.newLayout = VK_IMAGE_LAYOUT_CLEAR_OPTIMAL;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001231 memory_barrier.image = depthStencilObj->obj();
Mike Stroyan55658c22014-12-04 11:08:39 +00001232 memory_barrier.subresourceRange = dsRange;
1233
Tony Barbour8205d902015-04-16 15:59:00 -06001234 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001235
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001236 vkCmdClearDepthStencil(obj(),
1237 depthStencilObj->obj(), VK_IMAGE_LAYOUT_CLEAR_OPTIMAL,
Courtney Goeltzenleuchter7e305322015-03-05 17:26:38 -07001238 depth_clear_color, stencil_clear_color,
1239 1, &dsRange);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001240 mem_ref_mgr.AddMemoryRefs(*depthStencilObj);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001241
1242 // prepare depth buffer for rendering
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001243 memory_barrier.image = depthStencilObj->obj();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001244 memory_barrier.oldLayout = VK_IMAGE_LAYOUT_CLEAR_OPTIMAL;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001245 memory_barrier.newLayout = depthStencilObj->BindInfo()->layout;
Mike Stroyan55658c22014-12-04 11:08:39 +00001246 memory_barrier.subresourceRange = dsRange;
Tony Barbour8205d902015-04-16 15:59:00 -06001247 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001248 }
1249}
1250
Tony Barbour01999182015-04-09 12:58:51 -06001251void VkCommandBufferObj::PrepareAttachments()
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001252{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -06001253 uint32_t i;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001254 const VkFlags output_mask =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001255 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
1256 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
1257 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
1258 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -06001259 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001260 const VkFlags input_mask =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001261 VK_MEMORY_INPUT_CPU_READ_BIT |
1262 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
1263 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
1264 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
1265 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
1266 VK_MEMORY_INPUT_SHADER_READ_BIT |
1267 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
1268 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -06001269 VK_MEMORY_INPUT_TRANSFER_BIT;
Mike Stroyan55658c22014-12-04 11:08:39 +00001270
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001271 VkImageSubresourceRange srRange = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001272 srRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001273 srRange.baseMipLevel = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001274 srRange.mipLevels = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001275 srRange.baseArraySlice = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001276 srRange.arraySize = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001277
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001278 VkImageMemoryBarrier memory_barrier = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001279 memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
Mike Stroyan55658c22014-12-04 11:08:39 +00001280 memory_barrier.outputMask = output_mask;
1281 memory_barrier.inputMask = input_mask;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001282 memory_barrier.newLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
Mike Stroyan55658c22014-12-04 11:08:39 +00001283 memory_barrier.subresourceRange = srRange;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001284 VkImageMemoryBarrier *pmemory_barrier = &memory_barrier;
Mike Stroyan55658c22014-12-04 11:08:39 +00001285
Tony Barbour8205d902015-04-16 15:59:00 -06001286 VkPipeEvent set_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Mike Stroyan55658c22014-12-04 11:08:39 +00001287
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -07001288 for(i=0; i<m_renderTargets.size(); i++)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001289 {
Mike Stroyan55658c22014-12-04 11:08:39 +00001290 memory_barrier.image = m_renderTargets[i]->image();
1291 memory_barrier.oldLayout = m_renderTargets[i]->layout();
Tony Barbour8205d902015-04-16 15:59:00 -06001292 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Mike Stroyan55658c22014-12-04 11:08:39 +00001293 m_renderTargets[i]->layout(memory_barrier.newLayout);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001294 }
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001295}
1296
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001297void VkCommandBufferObj::BeginRenderPass(VkRenderPass renderpass, VkFramebuffer framebuffer)
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001298{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001299 VkRenderPassBegin rp_begin = {
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001300 renderpass,
1301 framebuffer,
1302 };
1303
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001304 vkCmdBeginRenderPass( obj(), &rp_begin);
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001305}
1306
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001307void VkCommandBufferObj::EndRenderPass(VkRenderPass renderpass)
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001308{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001309 vkCmdEndRenderPass( obj(), renderpass);
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001310}
1311
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001312void VkCommandBufferObj::BindStateObject(VkStateBindPoint stateBindPoint, VkDynamicStateObject stateObject)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001313{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001314 vkCmdBindDynamicStateObject( obj(), stateBindPoint, stateObject);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001315}
1316
Tony Barbour01999182015-04-09 12:58:51 -06001317void VkCommandBufferObj::AddRenderTarget(VkImageObj *renderTarget)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001318{
1319 m_renderTargets.push_back(renderTarget);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001320}
1321
Tony Barbour01999182015-04-09 12:58:51 -06001322void VkCommandBufferObj::DrawIndexed(uint32_t firstIndex, uint32_t indexCount, int32_t vertexOffset, uint32_t firstInstance, uint32_t instanceCount)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001323{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001324 vkCmdDrawIndexed(obj(), firstIndex, indexCount, vertexOffset, firstInstance, instanceCount);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001325}
1326
Tony Barbour01999182015-04-09 12:58:51 -06001327void VkCommandBufferObj::Draw(uint32_t firstVertex, uint32_t vertexCount, uint32_t firstInstance, uint32_t instanceCount)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001328{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001329 vkCmdDraw(obj(), firstVertex, vertexCount, firstInstance, instanceCount);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001330}
1331
Tony Barbour01999182015-04-09 12:58:51 -06001332void VkCommandBufferObj::QueueCommandBuffer()
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001333{
Tony Barbour67324f72015-04-08 10:11:29 -06001334 QueueCommandBuffer(NULL);
1335}
1336
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001337void VkCommandBufferObj::QueueCommandBuffer(VkFence fence)
Tony Barbour67324f72015-04-08 10:11:29 -06001338{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001339 VkResult err = VK_SUCCESS;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001340
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001341 mem_ref_mgr.EmitAddMemoryRefs(m_device->m_queue);
1342
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001343 // submit the command buffer to the universal queue
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001344 err = vkQueueSubmit( m_device->m_queue, 1, &obj(), fence );
1345 ASSERT_VK_SUCCESS( err );
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001346
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001347 err = vkQueueWaitIdle( m_device->m_queue );
1348 ASSERT_VK_SUCCESS( err );
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001349
1350 // Wait for work to finish before cleaning up.
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001351 vkDeviceWaitIdle(m_device->device());
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001352
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001353 /*
1354 * Now that processing on this command buffer is complete
1355 * we can remove the memory references.
1356 */
1357 mem_ref_mgr.EmitRemoveMemoryRefs(m_device->m_queue);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001358}
1359
Tony Barbour01999182015-04-09 12:58:51 -06001360void VkCommandBufferObj::BindPipeline(VkPipelineObj &pipeline)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001361{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001362 vkCmdBindPipeline( obj(), VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline.obj() );
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001363 mem_ref_mgr.AddMemoryRefs(pipeline);
1364}
1365
Tony Barbour01999182015-04-09 12:58:51 -06001366void VkCommandBufferObj::BindDescriptorSet(VkDescriptorSetObj &descriptorSet)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001367{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001368 VkDescriptorSet set_obj = descriptorSet.GetDescriptorSetHandle();
Chia-I Wu862c5572015-03-28 15:23:55 +08001369
Chia-I Wu714df452015-01-01 07:55:04 +08001370 // bind pipeline, vertex buffer (descriptor set) and WVP (dynamic buffer view)
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001371 vkCmdBindDescriptorSets(obj(), VK_PIPELINE_BIND_POINT_GRAPHICS,
Cody Northrop1a01b1d2015-04-16 13:41:56 -06001372 0, 1, &set_obj, 0, NULL );
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001373
1374 // Add descriptor set mem refs to command buffer's list
1375 mem_ref_mgr.AddMemoryRefs(descriptorSet.memories());
1376 mem_ref_mgr.AddMemoryRefs(descriptorSet.mem_ref_mgr.mem_refs());
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001377}
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001378
Tony Barbour01999182015-04-09 12:58:51 -06001379void VkCommandBufferObj::BindIndexBuffer(VkIndexBufferObj *indexBuffer, uint32_t offset)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001380{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001381 vkCmdBindIndexBuffer(obj(), indexBuffer->obj(), offset, indexBuffer->GetIndexType());
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001382 mem_ref_mgr.AddMemoryRefs(*indexBuffer);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001383}
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001384
Tony Barbour8205d902015-04-16 15:59:00 -06001385void VkCommandBufferObj::BindVertexBuffer(VkConstantBufferObj *vertexBuffer, VkDeviceSize offset, uint32_t binding)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001386{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -06001387 vkCmdBindVertexBuffers(obj(), binding, 1, &vertexBuffer->obj(), &offset);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001388 mem_ref_mgr.AddMemoryRefs(*vertexBuffer);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001389}
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001390
Tony Barbour01999182015-04-09 12:58:51 -06001391VkDepthStencilObj::VkDepthStencilObj()
Tony Barbour17c6ab12015-03-27 17:03:18 -06001392{
1393 m_initialized = false;
1394}
Tony Barbour01999182015-04-09 12:58:51 -06001395bool VkDepthStencilObj::Initialized()
Tony Barbour17c6ab12015-03-27 17:03:18 -06001396{
1397 return m_initialized;
1398}
1399
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001400VkDepthStencilBindInfo* VkDepthStencilObj::BindInfo()
Tony Barbour17c6ab12015-03-27 17:03:18 -06001401{
1402 return &m_depthStencilBindInfo;
1403}
1404
Tony Barbour01999182015-04-09 12:58:51 -06001405void VkDepthStencilObj::Init(VkDeviceObj *device, int32_t width, int32_t height)
Tony Barbour17c6ab12015-03-27 17:03:18 -06001406{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001407 VkImageCreateInfo image_info;
1408 VkDepthStencilViewCreateInfo view_info;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001409
1410 m_device = device;
1411 m_initialized = true;
Tony Barbour8205d902015-04-16 15:59:00 -06001412 m_depth_stencil_fmt = VK_FORMAT_D16_UNORM;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001413
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001414 image_info.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001415 image_info.pNext = NULL;
Tony Barbour8205d902015-04-16 15:59:00 -06001416 image_info.imageType = VK_IMAGE_TYPE_2D;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001417 image_info.format = m_depth_stencil_fmt;
1418 image_info.extent.width = width;
1419 image_info.extent.height = height;
1420 image_info.extent.depth = 1;
1421 image_info.mipLevels = 1;
1422 image_info.arraySize = 1;
1423 image_info.samples = 1;
Tony Barbour8205d902015-04-16 15:59:00 -06001424 image_info.tiling = VK_IMAGE_TILING_OPTIMAL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001425 image_info.usage = VK_IMAGE_USAGE_DEPTH_STENCIL_BIT;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001426 image_info.flags = 0;
1427 init(*m_device, image_info);
1428
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001429 view_info.sType = VK_STRUCTURE_TYPE_DEPTH_STENCIL_VIEW_CREATE_INFO;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001430 view_info.pNext = NULL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001431 view_info.image = VK_NULL_HANDLE;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001432 view_info.mipLevel = 0;
1433 view_info.baseArraySlice = 0;
1434 view_info.arraySize = 1;
1435 view_info.flags = 0;
1436 view_info.image = obj();
1437 m_depthStencilView.init(*m_device, view_info);
1438
1439 m_depthStencilBindInfo.view = m_depthStencilView.obj();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001440 m_depthStencilBindInfo.layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001441}