blob: 4f670c6e5cc213c1b872a53382df5b76ebf68c51 [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{
Mike Stroyan230e6252015-04-17 12:36:38 -060088 if (m_colorBlend) vkDestroyObject(device(), VK_OBJECT_TYPE_DYNAMIC_CB_STATE, m_colorBlend);
89 if (m_stateDepthStencil) vkDestroyObject(device(), VK_OBJECT_TYPE_DYNAMIC_DS_STATE, m_stateDepthStencil);
90 if (m_stateRaster) vkDestroyObject(device(), VK_OBJECT_TYPE_DYNAMIC_RS_STATE, m_stateRaster);
91 if (m_cmdBuffer) vkDestroyObject(device(), VK_OBJECT_TYPE_COMMAND_BUFFER, m_cmdBuffer);
92 if (m_framebuffer) vkDestroyObject(device(), VK_OBJECT_TYPE_FRAMEBUFFER, m_framebuffer);
93 if (m_renderPass) vkDestroyObject(device(), VK_OBJECT_TYPE_RENDER_PASS, m_renderPass);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060094
95 if (m_stateViewport) {
Mike Stroyan230e6252015-04-17 12:36:38 -060096 vkDestroyObject(device(), VK_OBJECT_TYPE_DYNAMIC_VP_STATE, m_stateViewport);
Courtney Goeltzenleuchter5744b972014-10-08 08:50:49 -060097 }
Tobin Ehlis12ee35f2015-03-26 08:23:25 -060098 while (!m_renderTargets.empty()) {
Mike Stroyan230e6252015-04-17 12:36:38 -060099 vkDestroyObject(device(), VK_OBJECT_TYPE_COLOR_ATTACHMENT_VIEW, m_renderTargets.back()->targetView());
100 vkQueueBindObjectMemory(m_device->m_queue, VK_OBJECT_TYPE_IMAGE, m_renderTargets.back()->image(), 0, VK_NULL_HANDLE, 0);
101 vkDestroyObject(device(), VK_OBJECT_TYPE_IMAGE, m_renderTargets.back()->image());
102 vkFreeMemory(device(), 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
Mark Lobodzinski556f7212015-04-17 14:11:39 -0500334VkPipelineLayout VkDescriptorSetObj::GetPipelineLayout() const
Tony Barbour3edb6ac2014-12-17 10:54:03 -0700335{
Mark Lobodzinski556f7212015-04-17 14:11:39 -0500336 return m_pipeline_layout.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);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600370 vector<const vk_testing::DescriptorSetLayout *> layouts;
Chia-I Wu7732cb22015-03-26 15:27:55 +0800371 layouts.push_back(&m_layout);
Mark Lobodzinski556f7212015-04-17 14:11:39 -0500372
373 // create VkPipelineLayout
374 VkPipelineLayoutCreateInfo pipeline_layout = {};
375 pipeline_layout.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO;
376 pipeline_layout.descriptorSetCount = layouts.size();
377 pipeline_layout.pSetLayouts = NULL;
378
379 m_pipeline_layout.init(*m_device, pipeline_layout, layouts);
Tony Barbourf43b6982014-11-25 13:18:32 -0700380
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600381 // create VkDescriptorSet
Mark Lobodzinskicf26e072015-04-16 11:44:05 -0500382 m_set = alloc_sets(*m_device, VK_DESCRIPTOR_SET_USAGE_STATIC, m_layout);
Chia-I Wuf8385062015-01-04 16:27:24 +0800383
Chia-I Wu7732cb22015-03-26 15:27:55 +0800384 // build the update array
385 vector<const void *> update_array;
Chia-I Wuf8385062015-01-04 16:27:24 +0800386
Chia-I Wu7732cb22015-03-26 15:27:55 +0800387 for (int i = 0; i < m_updateBuffers.size(); i++) {
388 update_array.push_back(&m_updateBuffers[i]);
Chia-I Wuf8385062015-01-04 16:27:24 +0800389 }
390 for (int i = 0; i < m_updateSamplerTextures.size(); i++) {
391 m_updateSamplerTextures[i].pSamplerImageViews = &m_samplerTextureInfo[i];
Chia-I Wu7732cb22015-03-26 15:27:55 +0800392 update_array.push_back(&m_updateSamplerTextures[i]);
Chia-I Wuf8385062015-01-04 16:27:24 +0800393 }
Chia-I Wuf8385062015-01-04 16:27:24 +0800394
395 // do the updates
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600396 m_device->begin_descriptor_pool_update(VK_DESCRIPTOR_UPDATE_MODE_FASTEST);
Chia-I Wuf8385062015-01-04 16:27:24 +0800397 clear_sets(*m_set);
Chia-I Wu7732cb22015-03-26 15:27:55 +0800398 m_set->update(update_array);
Chia-I Wu8d24b3b2015-03-26 13:14:16 +0800399 m_device->end_descriptor_pool_update(*cmdBuffer);
Tony Barbour342ae3b2014-12-03 13:59:18 -0700400}
Tony Barbourf43b6982014-11-25 13:18:32 -0700401
Tony Barbour01999182015-04-09 12:58:51 -0600402VkImageObj::VkImageObj(VkDeviceObj *dev)
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800403{
404 m_device = dev;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600405 m_imageInfo.view = VK_NULL_HANDLE;
406 m_imageInfo.layout = VK_IMAGE_LAYOUT_GENERAL;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800407}
408
Tony Barbour01999182015-04-09 12:58:51 -0600409void VkImageObj::ImageMemoryBarrier(
410 VkCommandBufferObj *cmd_buf,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600411 VkImageAspect aspect,
412 VkFlags output_mask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600413 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
414 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
415 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
416 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
417 VK_MEMORY_OUTPUT_COPY_BIT*/,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600418 VkFlags input_mask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600419 VK_MEMORY_INPUT_CPU_READ_BIT |
420 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
421 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
422 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
423 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
424 VK_MEMORY_INPUT_SHADER_READ_BIT |
425 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
426 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
427 VK_MEMORY_INPUT_COPY_BIT*/,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600428 VkImageLayout image_layout)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600429{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600430 const VkImageSubresourceRange subresourceRange = subresource_range(aspect, 0, 1, 0, 1);
431 VkImageMemoryBarrier barrier;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600432 barrier = image_memory_barrier(output_mask, input_mask, layout(), image_layout,
433 subresourceRange);
434
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600435 VkImageMemoryBarrier *pmemory_barrier = &barrier;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600436
Tony Barbour8205d902015-04-16 15:59:00 -0600437 VkPipeEvent pipe_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600438
439 // write barrier to the command buffer
Tony Barbour8205d902015-04-16 15:59:00 -0600440 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 -0600441}
442
Tony Barbour01999182015-04-09 12:58:51 -0600443void VkImageObj::SetLayout(VkCommandBufferObj *cmd_buf,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600444 VkImageAspect aspect,
445 VkImageLayout image_layout)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600446{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600447 VkFlags output_mask, input_mask;
448 const VkFlags all_cache_outputs =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600449 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
450 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
451 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
452 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600453 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600454 const VkFlags all_cache_inputs =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600455 VK_MEMORY_INPUT_CPU_READ_BIT |
456 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
457 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
458 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
459 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
460 VK_MEMORY_INPUT_SHADER_READ_BIT |
461 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
462 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600463 VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600464
465 if (image_layout == m_imageInfo.layout) {
466 return;
467 }
468
469 switch (image_layout) {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600470 case VK_IMAGE_LAYOUT_TRANSFER_SOURCE_OPTIMAL:
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600471 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
472 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600473 break;
474
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600475 case VK_IMAGE_LAYOUT_TRANSFER_DESTINATION_OPTIMAL:
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600476 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
477 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600478 break;
479
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600480 case VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL:
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600481 output_mask = VK_MEMORY_OUTPUT_TRANSFER_BIT;
482 input_mask = VK_MEMORY_INPUT_SHADER_READ_BIT | VK_MEMORY_INPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600483 break;
484
Tony Barbour22a30862015-04-22 09:02:32 -0600485 case VK_IMAGE_LAYOUT_CLEAR_OPTIMAL:
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600486 default:
487 output_mask = all_cache_outputs;
488 input_mask = all_cache_inputs;
489 break;
490 }
491
492 ImageMemoryBarrier(cmd_buf, aspect, output_mask, input_mask, image_layout);
493 m_imageInfo.layout = image_layout;
494}
495
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600496void VkImageObj::SetLayout(VkImageAspect aspect,
497 VkImageLayout image_layout)
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600498{
Tony Barbour22a30862015-04-22 09:02:32 -0600499 VkResult U_ASSERT_ONLY err;
Tony Barbour01999182015-04-09 12:58:51 -0600500 VkCommandBufferObj cmd_buf(m_device);
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600501
502 /* Build command buffer to set image layout in the driver */
503 err = cmd_buf.BeginCommandBuffer();
504 assert(!err);
505
506 SetLayout(&cmd_buf, aspect, image_layout);
507
508 err = cmd_buf.EndCommandBuffer();
509 assert(!err);
510
511 cmd_buf.QueueCommandBuffer();
512}
513
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600514bool VkImageObj::IsCompatible(VkFlags usage, VkFlags features)
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600515{
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600516 if ((usage & VK_IMAGE_USAGE_SAMPLED_BIT) &&
Tony Barbour8205d902015-04-16 15:59:00 -0600517 !(features & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT))
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600518 return false;
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600519
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600520 return true;
521}
522
Tony Barbour01999182015-04-09 12:58:51 -0600523void VkImageObj::init(uint32_t w, uint32_t h,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600524 VkFormat fmt, VkFlags usage,
Tony Barbour94310562015-04-22 15:10:33 -0600525 VkImageTiling requested_tiling,
526 VkMemoryPropertyFlags reqs)
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800527{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -0600528 uint32_t mipCount;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600529 VkFormatProperties image_fmt;
530 VkImageTiling tiling;
531 VkResult err;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600532 size_t size;
533
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800534 mipCount = 0;
535
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -0600536 uint32_t _w = w;
537 uint32_t _h = h;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800538 while( ( _w > 0 ) || ( _h > 0 ) )
539 {
540 _w >>= 1;
541 _h >>= 1;
542 mipCount++;
543 }
544
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600545 size = sizeof(image_fmt);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600546 err = vkGetFormatInfo(m_device->obj(), fmt,
Tony Barbour8205d902015-04-16 15:59:00 -0600547 VK_FORMAT_INFO_TYPE_PROPERTIES,
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600548 &size, &image_fmt);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600549 ASSERT_VK_SUCCESS(err);
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600550
Tony Barbour8205d902015-04-16 15:59:00 -0600551 if (requested_tiling == VK_IMAGE_TILING_LINEAR) {
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600552 if (IsCompatible(usage, image_fmt.linearTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600553 tiling = VK_IMAGE_TILING_LINEAR;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600554 } 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 {
557 ASSERT_TRUE(false) << "Error: Cannot find requested tiling configuration";
558 }
559 } else if (IsCompatible(usage, image_fmt.optimalTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600560 tiling = VK_IMAGE_TILING_OPTIMAL;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600561 } else if (IsCompatible(usage, image_fmt.linearTilingFeatures)) {
Tony Barbour8205d902015-04-16 15:59:00 -0600562 tiling = VK_IMAGE_TILING_LINEAR;
Tony Barbour6b20a0f2015-04-03 15:11:43 -0600563 } else {
564 ASSERT_TRUE(false) << "Error: Cannot find requested tiling configuration";
565 }
566
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600567 VkImageCreateInfo imageCreateInfo = vk_testing::Image::create_info();
Tony Barbour8205d902015-04-16 15:59:00 -0600568 imageCreateInfo.imageType = VK_IMAGE_TYPE_2D;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800569 imageCreateInfo.format = fmt;
570 imageCreateInfo.extent.width = w;
571 imageCreateInfo.extent.height = h;
572 imageCreateInfo.mipLevels = mipCount;
573 imageCreateInfo.tiling = tiling;
574
575 imageCreateInfo.usage = usage;
576
Tony Barbour94310562015-04-22 15:10:33 -0600577 vk_testing::Image::init(*m_device, imageCreateInfo, reqs);
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800578
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -0600579 if (usage & VK_IMAGE_USAGE_SAMPLED_BIT) {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600580 SetLayout(VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL);
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600581 } else {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600582 SetLayout(VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_GENERAL);
Courtney Goeltzenleuchter4d18b082015-04-07 08:57:30 -0600583 }
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800584}
585
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600586VkResult VkImageObj::MapMemory(void** ptr)
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800587{
588 *ptr = map();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600589 return (*ptr) ? VK_SUCCESS : VK_ERROR_UNKNOWN;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800590}
591
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600592VkResult VkImageObj::UnmapMemory()
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800593{
594 unmap();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600595 return VK_SUCCESS;
Chia-I Wu13ecdcd2014-12-29 14:38:28 +0800596}
597
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600598VkResult VkImageObj::CopyImage(VkImageObj &src_image)
Tony Barbour16b71bc2015-04-01 17:47:06 -0600599{
Tony Barbour22a30862015-04-22 09:02:32 -0600600 VkResult U_ASSERT_ONLY err;
Tony Barbour01999182015-04-09 12:58:51 -0600601 VkCommandBufferObj cmd_buf(m_device);
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600602 VkImageLayout src_image_layout, dest_image_layout;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600603
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600604 /* Build command buffer to copy staging texture to usable texture */
605 err = cmd_buf.BeginCommandBuffer();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600606 assert(!err);
607
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600608 /* TODO: Can we determine image aspect from image object? */
609 src_image_layout = src_image.layout();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600610 src_image.SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_TRANSFER_SOURCE_OPTIMAL);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600611
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600612 dest_image_layout = this->layout();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600613 this->SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, VK_IMAGE_LAYOUT_TRANSFER_DESTINATION_OPTIMAL);
Tony Barbour17c6ab12015-03-27 17:03:18 -0600614
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600615 VkImageCopy copy_region = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600616 copy_region.srcSubresource.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600617 copy_region.srcSubresource.arraySlice = 0;
618 copy_region.srcSubresource.mipLevel = 0;
619 copy_region.srcOffset.x = 0;
620 copy_region.srcOffset.y = 0;
621 copy_region.srcOffset.z = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600622 copy_region.destSubresource.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600623 copy_region.destSubresource.arraySlice = 0;
624 copy_region.destSubresource.mipLevel = 0;
625 copy_region.destOffset.x = 0;
626 copy_region.destOffset.y = 0;
627 copy_region.destOffset.z = 0;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600628 copy_region.extent = src_image.extent();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600629
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600630 vkCmdCopyImage(cmd_buf.obj(),
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600631 src_image.obj(), src_image.layout(),
632 obj(), layout(),
Tony Barbour17c6ab12015-03-27 17:03:18 -0600633 1, &copy_region);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600634 cmd_buf.mem_ref_mgr.AddMemoryRefs(src_image);
635 cmd_buf.mem_ref_mgr.AddMemoryRefs(*this);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600636
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600637 src_image.SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, src_image_layout);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600638
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600639 this->SetLayout(&cmd_buf, VK_IMAGE_ASPECT_COLOR, dest_image_layout);
Tony Barbour17c6ab12015-03-27 17:03:18 -0600640
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600641 err = cmd_buf.EndCommandBuffer();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600642 assert(!err);
643
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600644 cmd_buf.QueueCommandBuffer();
Tony Barbour16b71bc2015-04-01 17:47:06 -0600645
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600646 return VK_SUCCESS;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600647}
648
Tony Barbour01999182015-04-09 12:58:51 -0600649VkTextureObj::VkTextureObj(VkDeviceObj *device, uint32_t *colors)
650 :VkImageObj(device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700651{
652 m_device = device;
Tony Barbour8205d902015-04-16 15:59:00 -0600653 const VkFormat tex_format = VK_FORMAT_B8G8R8A8_UNORM;
Tony Barbour2f421a02015-04-01 16:38:10 -0600654 uint32_t tex_colors[2] = { 0xffff0000, 0xff00ff00 };
Tony Barbour16b71bc2015-04-01 17:47:06 -0600655 void *data;
656 int32_t x, y;
Tony Barbour01999182015-04-09 12:58:51 -0600657 VkImageObj stagingImage(device);
Tony Barbour94310562015-04-22 15:10:33 -0600658 VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600659
Tony Barbour94310562015-04-22 15:10:33 -0600660 stagingImage.init(16, 16, tex_format, 0, VK_IMAGE_TILING_LINEAR, reqs);
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600661 VkSubresourceLayout layout = stagingImage.subresource_layout(subresource(VK_IMAGE_ASPECT_COLOR, 0, 0));
Tony Barbour2f421a02015-04-01 16:38:10 -0600662
663 if (colors == NULL)
664 colors = tex_colors;
Tony Barbourf43b6982014-11-25 13:18:32 -0700665
666 memset(&m_textureViewInfo,0,sizeof(m_textureViewInfo));
667
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600668 m_textureViewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_ATTACH_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700669
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600670 VkImageViewCreateInfo view = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600671 view.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600672 view.pNext = NULL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600673 view.image = VK_NULL_HANDLE;
Tony Barbour8205d902015-04-16 15:59:00 -0600674 view.viewType = VK_IMAGE_VIEW_TYPE_2D;
Tony Barbour16b71bc2015-04-01 17:47:06 -0600675 view.format = tex_format;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600676 view.channels.r = VK_CHANNEL_SWIZZLE_R;
677 view.channels.g = VK_CHANNEL_SWIZZLE_G;
678 view.channels.b = VK_CHANNEL_SWIZZLE_B;
679 view.channels.a = VK_CHANNEL_SWIZZLE_A;
680 view.subresourceRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600681 view.subresourceRange.baseMipLevel = 0;
682 view.subresourceRange.mipLevels = 1;
683 view.subresourceRange.baseArraySlice = 0;
684 view.subresourceRange.arraySize = 1;
685 view.minLod = 0.0f;
Tony Barbourf43b6982014-11-25 13:18:32 -0700686
Tony Barbourf43b6982014-11-25 13:18:32 -0700687 /* create image */
Tony Barbour8205d902015-04-16 15:59:00 -0600688 init(16, 16, tex_format, VK_IMAGE_USAGE_SAMPLED_BIT, VK_IMAGE_TILING_OPTIMAL);
Tony Barbourf43b6982014-11-25 13:18:32 -0700689
690 /* create image view */
Chia-I Wudbec1222014-12-28 15:55:09 +0800691 view.image = obj();
692 m_textureView.init(*m_device, view);
Tony Barbour16b71bc2015-04-01 17:47:06 -0600693 m_textureViewInfo.view = m_textureView.obj();
Tony Barbourf43b6982014-11-25 13:18:32 -0700694
Tony Barbour16b71bc2015-04-01 17:47:06 -0600695 data = stagingImage.map();
Tony Barbourf43b6982014-11-25 13:18:32 -0700696
Chia-I Wudbec1222014-12-28 15:55:09 +0800697 for (y = 0; y < extent().height; y++) {
Tony Barbourf43b6982014-11-25 13:18:32 -0700698 uint32_t *row = (uint32_t *) ((char *) data + layout.rowPitch * y);
Chia-I Wudbec1222014-12-28 15:55:09 +0800699 for (x = 0; x < extent().width; x++)
Tony Barbour2f421a02015-04-01 16:38:10 -0600700 row[x] = colors[(x & 1) ^ (y & 1)];
Tony Barbourf43b6982014-11-25 13:18:32 -0700701 }
Tony Barbour16b71bc2015-04-01 17:47:06 -0600702 stagingImage.unmap();
Tony Barbour01999182015-04-09 12:58:51 -0600703 VkImageObj::CopyImage(stagingImage);
Tony Barbourf43b6982014-11-25 13:18:32 -0700704}
Tony Barbour408ca622014-12-04 14:33:33 -0700705
Tony Barbour01999182015-04-09 12:58:51 -0600706VkSamplerObj::VkSamplerObj(VkDeviceObj *device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700707{
Tony Barbourf43b6982014-11-25 13:18:32 -0700708 m_device = device;
Tony Barbourf43b6982014-11-25 13:18:32 -0700709
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600710 VkSamplerCreateInfo samplerCreateInfo;
Chia-I Wua64266a2014-12-28 16:32:24 +0800711 memset(&samplerCreateInfo,0,sizeof(samplerCreateInfo));
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600712 samplerCreateInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO;
713 samplerCreateInfo.magFilter = VK_TEX_FILTER_NEAREST;
714 samplerCreateInfo.minFilter = VK_TEX_FILTER_NEAREST;
Tony Barbour8205d902015-04-16 15:59:00 -0600715 samplerCreateInfo.mipMode = VK_TEX_MIPMAP_MODE_BASE;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600716 samplerCreateInfo.addressU = VK_TEX_ADDRESS_WRAP;
717 samplerCreateInfo.addressV = VK_TEX_ADDRESS_WRAP;
718 samplerCreateInfo.addressW = VK_TEX_ADDRESS_WRAP;
Chia-I Wua64266a2014-12-28 16:32:24 +0800719 samplerCreateInfo.mipLodBias = 0.0;
720 samplerCreateInfo.maxAnisotropy = 0.0;
Tony Barbour8205d902015-04-16 15:59:00 -0600721 samplerCreateInfo.compareOp = VK_COMPARE_OP_NEVER;
Chia-I Wua64266a2014-12-28 16:32:24 +0800722 samplerCreateInfo.minLod = 0.0;
723 samplerCreateInfo.maxLod = 0.0;
Tony Barbour8205d902015-04-16 15:59:00 -0600724 samplerCreateInfo.borderColor = VK_BORDER_COLOR_OPAQUE_WHITE;
Tony Barbourf43b6982014-11-25 13:18:32 -0700725
Chia-I Wua64266a2014-12-28 16:32:24 +0800726 init(*m_device, samplerCreateInfo);
Tony Barbour2cb6bf52014-12-03 15:59:38 -0700727}
Tony Barbourf43b6982014-11-25 13:18:32 -0700728
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700729/*
730 * Basic ConstantBuffer constructor. Then use create methods to fill in the details.
731 */
Tony Barbour01999182015-04-09 12:58:51 -0600732VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device)
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700733{
734 m_device = device;
Tony Barbour9f47dc72014-12-10 14:36:31 -0700735 m_commandBuffer = 0;
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700736
Chia-I Wu714df452015-01-01 07:55:04 +0800737 memset(&m_bufferViewInfo,0,sizeof(m_bufferViewInfo));
Courtney Goeltzenleuchterea2db0d2014-12-04 15:18:47 -0700738}
739
Tony Barbour01999182015-04-09 12:58:51 -0600740VkConstantBufferObj::~VkConstantBufferObj()
Tony Barbour864c0332015-03-26 12:37:52 -0600741{
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600742 // TODO: Should we call QueueRemoveMemReference for the constant buffer memory here?
Tony Barbour864c0332015-03-26 12:37:52 -0600743 if (m_commandBuffer) {
744 delete m_commandBuffer;
745 }
746}
747
Tony Barbour01999182015-04-09 12:58:51 -0600748VkConstantBufferObj::VkConstantBufferObj(VkDeviceObj *device, int constantCount, int constantSize, const void* data)
Tony Barbourf43b6982014-11-25 13:18:32 -0700749{
Tony Barbourf43b6982014-11-25 13:18:32 -0700750 m_device = device;
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800751 m_commandBuffer = 0;
752
Chia-I Wu714df452015-01-01 07:55:04 +0800753 memset(&m_bufferViewInfo,0,sizeof(m_bufferViewInfo));
Tony Barbourf43b6982014-11-25 13:18:32 -0700754 m_numVertices = constantCount;
755 m_stride = constantSize;
756
Tony Barbour94310562015-04-22 15:10:33 -0600757 VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800758 const size_t allocationSize = constantCount * constantSize;
Tony Barbour94310562015-04-22 15:10:33 -0600759 init(*m_device, allocationSize, reqs);
Tony Barbourf43b6982014-11-25 13:18:32 -0700760
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800761 void *pData = map();
762 memcpy(pData, data, allocationSize);
763 unmap();
Tony Barbourf43b6982014-11-25 13:18:32 -0700764
Chia-I Wu714df452015-01-01 07:55:04 +0800765 // set up the buffer view for the constant buffer
Courtney Goeltzenleuchterddcb6192015-04-14 18:48:46 -0600766 VkBufferViewCreateInfo view_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600767 view_info.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800768 view_info.buffer = obj();
Tony Barbour8205d902015-04-16 15:59:00 -0600769 view_info.viewType = VK_BUFFER_VIEW_TYPE_RAW;
Chia-I Wu714df452015-01-01 07:55:04 +0800770 view_info.offset = 0;
771 view_info.range = allocationSize;
772 m_bufferView.init(*m_device, view_info);
773
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600774 this->m_bufferViewInfo.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_ATTACH_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800775 this->m_bufferViewInfo.view = m_bufferView.obj();
Tony Barbourf43b6982014-11-25 13:18:32 -0700776}
Tony Barbour408ca622014-12-04 14:33:33 -0700777
Tony Barbour8205d902015-04-16 15:59:00 -0600778void VkConstantBufferObj::Bind(VkCmdBuffer cmdBuffer, VkDeviceSize offset, uint32_t binding)
Courtney Goeltzenleuchter7715bc42014-12-04 15:26:56 -0700779{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -0600780 vkCmdBindVertexBuffers(cmdBuffer, binding, 1, &obj(), &offset);
Courtney Goeltzenleuchter7715bc42014-12-04 15:26:56 -0700781}
782
783
Tony Barbour01999182015-04-09 12:58:51 -0600784void VkConstantBufferObj::BufferMemoryBarrier(
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600785 VkFlags outputMask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600786 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
787 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
788 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
789 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
790 VK_MEMORY_OUTPUT_COPY_BIT*/,
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600791 VkFlags inputMask /*=
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600792 VK_MEMORY_INPUT_CPU_READ_BIT |
793 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
794 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
795 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
796 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
797 VK_MEMORY_INPUT_SHADER_READ_BIT |
798 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
799 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
800 VK_MEMORY_INPUT_COPY_BIT*/)
Tony Barbourf43b6982014-11-25 13:18:32 -0700801{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600802 VkResult err = VK_SUCCESS;
Tony Barbour9f47dc72014-12-10 14:36:31 -0700803
Tony Barbour9f47dc72014-12-10 14:36:31 -0700804 if (!m_commandBuffer)
805 {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600806 m_fence.init(*m_device, vk_testing::Fence::create_info());
Tony Barbour9f47dc72014-12-10 14:36:31 -0700807
Tony Barbour01999182015-04-09 12:58:51 -0600808 m_commandBuffer = new VkCommandBufferObj(m_device);
Tony Barbour9f47dc72014-12-10 14:36:31 -0700809 }
810 else
811 {
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800812 m_device->wait(m_fence);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600813 m_commandBuffer->mem_ref_mgr.EmitRemoveMemoryRefs(m_device->m_queue);
Tony Barbour9f47dc72014-12-10 14:36:31 -0700814 }
815
Tony Barbourf43b6982014-11-25 13:18:32 -0700816 // open the command buffer
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600817 VkCmdBufferBeginInfo cmd_buf_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600818 cmd_buf_info.sType = VK_STRUCTURE_TYPE_CMD_BUFFER_BEGIN_INFO;
Tony Barbour901f3bc2015-04-01 17:10:07 -0600819 cmd_buf_info.pNext = NULL;
820 cmd_buf_info.flags = 0;
821
Jon Ashburn744b8cf2014-12-31 17:10:47 -0700822 err = m_commandBuffer->BeginCommandBuffer(&cmd_buf_info);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600823 ASSERT_VK_SUCCESS(err);
Tony Barbourf43b6982014-11-25 13:18:32 -0700824
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600825 VkBufferMemoryBarrier memory_barrier =
Mike Stroyan55658c22014-12-04 11:08:39 +0000826 buffer_memory_barrier(outputMask, inputMask, 0, m_numVertices * m_stride);
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600827 VkBufferMemoryBarrier *pmemory_barrier = &memory_barrier;
Tony Barbourf43b6982014-11-25 13:18:32 -0700828
Tony Barbour8205d902015-04-16 15:59:00 -0600829 VkPipeEvent set_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Mike Stroyan55658c22014-12-04 11:08:39 +0000830
831 // write barrier to the command buffer
Tony Barbour8205d902015-04-16 15:59:00 -0600832 m_commandBuffer->PipelineBarrier(VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Tony Barbourf43b6982014-11-25 13:18:32 -0700833
834 // finish recording the command buffer
Tony Barboure8f14162014-12-10 17:28:39 -0700835 err = m_commandBuffer->EndCommandBuffer();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600836 ASSERT_VK_SUCCESS(err);
Tony Barbourf43b6982014-11-25 13:18:32 -0700837
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -0600838 /*
839 * Tell driver about memory references made in this command buffer
840 * Note: Since this command buffer only has a PipelineBarrier
841 * command there really aren't any memory refs to worry about.
842 */
843 m_commandBuffer->mem_ref_mgr.EmitAddMemoryRefs(m_device->m_queue);
Tony Barbourf43b6982014-11-25 13:18:32 -0700844
845 // submit the command buffer to the universal queue
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600846 VkCmdBuffer bufferArray[1];
Tony Barboure8f14162014-12-10 17:28:39 -0700847 bufferArray[0] = m_commandBuffer->GetBufferHandle();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600848 err = vkQueueSubmit( m_device->m_queue, 1, bufferArray, m_fence.obj() );
849 ASSERT_VK_SUCCESS(err);
Tony Barbourf43b6982014-11-25 13:18:32 -0700850}
851
Tony Barbour01999182015-04-09 12:58:51 -0600852VkIndexBufferObj::VkIndexBufferObj(VkDeviceObj *device)
853 : VkConstantBufferObj(device)
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700854{
855
856}
857
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600858void VkIndexBufferObj::CreateAndInitBuffer(int numIndexes, VkIndexType indexType, const void* data)
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700859{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600860 VkFormat viewFormat;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700861
862 m_numVertices = numIndexes;
863 m_indexType = indexType;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700864 switch (indexType) {
Tony Barbour8205d902015-04-16 15:59:00 -0600865 case VK_INDEX_TYPE_UINT8:
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700866 m_stride = 1;
Tony Barbour8205d902015-04-16 15:59:00 -0600867 viewFormat = VK_FORMAT_R8_UINT;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700868 break;
Tony Barbour8205d902015-04-16 15:59:00 -0600869 case VK_INDEX_TYPE_UINT16:
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700870 m_stride = 2;
Tony Barbour8205d902015-04-16 15:59:00 -0600871 viewFormat = VK_FORMAT_R16_UINT;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700872 break;
Tony Barbour8205d902015-04-16 15:59:00 -0600873 case VK_INDEX_TYPE_UINT32:
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700874 m_stride = 4;
Tony Barbour8205d902015-04-16 15:59:00 -0600875 viewFormat = VK_FORMAT_R32_UINT;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700876 break;
Chia-I Wubbdeacc2014-12-15 23:50:11 +0800877 default:
878 assert(!"unknown index type");
Tony Barbour22a30862015-04-22 09:02:32 -0600879 m_stride = 2;
880 viewFormat = VK_FORMAT_R16_UINT;
Chia-I Wubbdeacc2014-12-15 23:50:11 +0800881 break;
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700882 }
883
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800884 const size_t allocationSize = numIndexes * m_stride;
Tony Barbour94310562015-04-22 15:10:33 -0600885 VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
886 init(*m_device, allocationSize, reqs);
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700887
Chia-I Wu67ee00f2014-12-28 15:26:08 +0800888 void *pData = map();
889 memcpy(pData, data, allocationSize);
890 unmap();
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700891
Chia-I Wu714df452015-01-01 07:55:04 +0800892 // set up the buffer view for the constant buffer
Courtney Goeltzenleuchterddcb6192015-04-14 18:48:46 -0600893 VkBufferViewCreateInfo view_info = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600894 view_info.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800895 view_info.buffer = obj();
Tony Barbour8205d902015-04-16 15:59:00 -0600896 view_info.viewType = VK_BUFFER_VIEW_TYPE_FORMATTED;
Jeremy Hayes2b7e88a2015-01-23 08:51:43 -0700897 view_info.format = viewFormat;
Chia-I Wu714df452015-01-01 07:55:04 +0800898 view_info.offset = 0;
899 view_info.range = allocationSize;
900 m_bufferView.init(*m_device, view_info);
901
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600902 this->m_bufferViewInfo.sType = VK_STRUCTURE_TYPE_BUFFER_VIEW_ATTACH_INFO;
Chia-I Wu714df452015-01-01 07:55:04 +0800903 this->m_bufferViewInfo.view = m_bufferView.obj();
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700904}
905
Tony Barbour8205d902015-04-16 15:59:00 -0600906void VkIndexBufferObj::Bind(VkCmdBuffer cmdBuffer, VkDeviceSize offset)
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700907{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600908 vkCmdBindIndexBuffer(cmdBuffer, obj(), offset, m_indexType);
Courtney Goeltzenleuchterfa834c92014-12-04 15:24:05 -0700909}
Tony Barbourf43b6982014-11-25 13:18:32 -0700910
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600911VkIndexType VkIndexBufferObj::GetIndexType()
Tony Barbour140a59f2014-12-17 10:57:58 -0700912{
913 return m_indexType;
914}
915
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600916VkPipelineShaderStageCreateInfo* VkShaderObj::GetStageCreateInfo()
Tony Barbourf43b6982014-11-25 13:18:32 -0700917{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600918 VkPipelineShaderStageCreateInfo *stageInfo = (VkPipelineShaderStageCreateInfo*) calloc( 1,sizeof(VkPipelineShaderStageCreateInfo) );
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600919 stageInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700920 stageInfo->shader.stage = m_stage;
Chia-I Wuc2c31082014-12-29 14:14:03 +0800921 stageInfo->shader.shader = obj();
Tony Barbourf43b6982014-11-25 13:18:32 -0700922 stageInfo->shader.linkConstBufferCount = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600923 stageInfo->shader.pLinkConstBufferInfo = VK_NULL_HANDLE;
Tony Barbourf43b6982014-11-25 13:18:32 -0700924
Tony Barbourf43b6982014-11-25 13:18:32 -0700925 return stageInfo;
926}
927
Tony Barbour8205d902015-04-16 15:59:00 -0600928VkShaderObj::VkShaderObj(VkDeviceObj *device, const char * shader_code, VkShaderStage stage, VkRenderFramework *framework)
Tony Barbourf43b6982014-11-25 13:18:32 -0700929{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600930 VkResult err = VK_SUCCESS;
Cody Northropacfb0492015-03-17 15:55:58 -0600931 std::vector<unsigned int> spv;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600932 VkShaderCreateInfo createInfo;
Tony Barbourf43b6982014-11-25 13:18:32 -0700933 size_t shader_len;
934
935 m_stage = stage;
936 m_device = device;
937
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600938 createInfo.sType = VK_STRUCTURE_TYPE_SHADER_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700939 createInfo.pNext = NULL;
940
Cody Northropacfb0492015-03-17 15:55:58 -0600941 if (!framework->m_use_spv) {
Tony Barbourf43b6982014-11-25 13:18:32 -0700942
943 shader_len = strlen(shader_code);
944 createInfo.codeSize = 3 * sizeof(uint32_t) + shader_len + 1;
945 createInfo.pCode = malloc(createInfo.codeSize);
946 createInfo.flags = 0;
947
Tony Barbour8205d902015-04-16 15:59:00 -0600948 /* try version 0 first: VkShaderStage followed by GLSL */
Cody Northropacfb0492015-03-17 15:55:58 -0600949 ((uint32_t *) createInfo.pCode)[0] = ICD_SPV_MAGIC;
Tony Barbourf43b6982014-11-25 13:18:32 -0700950 ((uint32_t *) createInfo.pCode)[1] = 0;
951 ((uint32_t *) createInfo.pCode)[2] = stage;
952 memcpy(((uint32_t *) createInfo.pCode + 3), shader_code, shader_len + 1);
953
Chia-I Wuc2c31082014-12-29 14:14:03 +0800954 err = init_try(*m_device, createInfo);
Tony Barbourf43b6982014-11-25 13:18:32 -0700955 }
956
Cody Northropacfb0492015-03-17 15:55:58 -0600957 if (framework->m_use_spv || err) {
958 std::vector<unsigned int> spv;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600959 err = VK_SUCCESS;
Tony Barbourf43b6982014-11-25 13:18:32 -0700960
Cody Northropacfb0492015-03-17 15:55:58 -0600961 // Use Reference GLSL to SPV compiler
962 framework->GLSLtoSPV(stage, shader_code, spv);
963 createInfo.pCode = spv.data();
964 createInfo.codeSize = spv.size() * sizeof(unsigned int);
Tony Barbourf43b6982014-11-25 13:18:32 -0700965 createInfo.flags = 0;
Tony Barbour408ca622014-12-04 14:33:33 -0700966
Chia-I Wuc2c31082014-12-29 14:14:03 +0800967 init(*m_device, createInfo);
968 }
Tony Barbour2cb6bf52014-12-03 15:59:38 -0700969}
Tony Barbour408ca622014-12-04 14:33:33 -0700970
Tony Barbour01999182015-04-09 12:58:51 -0600971VkPipelineObj::VkPipelineObj(VkDeviceObj *device)
Tony Barbourf43b6982014-11-25 13:18:32 -0700972{
Tony Barbourf43b6982014-11-25 13:18:32 -0700973 m_device = device;
974 m_vi_state.attributeCount = m_vi_state.bindingCount = 0;
975 m_vertexBufferCount = 0;
976
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600977 m_ia_state.sType = VK_STRUCTURE_TYPE_PIPELINE_IA_STATE_CREATE_INFO;
978 m_ia_state.pNext = VK_NULL_HANDLE;
Tony Barbour8205d902015-04-16 15:59:00 -0600979 m_ia_state.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600980 m_ia_state.disableVertexReuse = VK_FALSE;
981 m_ia_state.primitiveRestartEnable = VK_FALSE;
Tony Barbourf43b6982014-11-25 13:18:32 -0700982 m_ia_state.primitiveRestartIndex = 0;
983
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600984 m_rs_state.sType = VK_STRUCTURE_TYPE_PIPELINE_RS_STATE_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700985 m_rs_state.pNext = &m_ia_state;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600986 m_rs_state.depthClipEnable = VK_FALSE;
987 m_rs_state.rasterizerDiscardEnable = VK_FALSE;
988 m_rs_state.programPointSize = VK_FALSE;
989 m_rs_state.pointOrigin = VK_COORDINATE_ORIGIN_UPPER_LEFT;
990 m_rs_state.provokingVertex = VK_PROVOKING_VERTEX_LAST;
Tony Barbour8205d902015-04-16 15:59:00 -0600991 m_rs_state.fillMode = VK_FILL_MODE_SOLID;
992 m_rs_state.cullMode = VK_CULL_MODE_NONE;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600993 m_rs_state.frontFace = VK_FRONT_FACE_CCW;
Tony Barbourf43b6982014-11-25 13:18:32 -0700994
Tony Barbourf43b6982014-11-25 13:18:32 -0700995 memset(&m_cb_state,0,sizeof(m_cb_state));
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600996 m_cb_state.sType = VK_STRUCTURE_TYPE_PIPELINE_CB_STATE_CREATE_INFO;
Tony Barbourf43b6982014-11-25 13:18:32 -0700997 m_cb_state.pNext = &m_rs_state;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -0600998 m_cb_state.alphaToCoverageEnable = VK_FALSE;
999 m_cb_state.logicOp = VK_LOGIC_OP_COPY;
Tony Barbourf43b6982014-11-25 13:18:32 -07001000
Tony Barbourfa6cac72015-01-16 14:27:35 -07001001 m_ms_state.pNext = &m_cb_state;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001002 m_ms_state.sType = VK_STRUCTURE_TYPE_PIPELINE_MS_STATE_CREATE_INFO;
1003 m_ms_state.multisampleEnable = VK_FALSE;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001004 m_ms_state.sampleMask = 1; // Do we have to specify MSAA even just to disable it?
1005 m_ms_state.samples = 1;
1006 m_ms_state.minSampleShading = 0;
1007 m_ms_state.sampleShadingEnable = 0;
Tony Barbourf43b6982014-11-25 13:18:32 -07001008
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001009 m_ds_state.sType = VK_STRUCTURE_TYPE_PIPELINE_DS_STATE_CREATE_INFO;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001010 m_ds_state.pNext = &m_ms_state,
Tony Barbour8205d902015-04-16 15:59:00 -06001011 m_ds_state.format = VK_FORMAT_D32_SFLOAT;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001012 m_ds_state.depthTestEnable = VK_FALSE;
1013 m_ds_state.depthWriteEnable = VK_FALSE;
1014 m_ds_state.depthBoundsEnable = VK_FALSE;
Tony Barbour8205d902015-04-16 15:59:00 -06001015 m_ds_state.depthCompareOp = VK_COMPARE_OP_LESS_EQUAL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001016 m_ds_state.back.stencilDepthFailOp = VK_STENCIL_OP_KEEP;
1017 m_ds_state.back.stencilFailOp = VK_STENCIL_OP_KEEP;
1018 m_ds_state.back.stencilPassOp = VK_STENCIL_OP_KEEP;
Tony Barbour8205d902015-04-16 15:59:00 -06001019 m_ds_state.back.stencilCompareOp = VK_COMPARE_OP_ALWAYS;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001020 m_ds_state.stencilTestEnable = VK_FALSE;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001021 m_ds_state.front = m_ds_state.back;
Tony Barbourf43b6982014-11-25 13:18:32 -07001022
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001023 VkPipelineCbAttachmentState att = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001024 att.blendEnable = VK_FALSE;
Tony Barbour8205d902015-04-16 15:59:00 -06001025 att.format = VK_FORMAT_B8G8R8A8_UNORM;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001026 att.channelWriteMask = 0xf;
1027 AddColorAttachment(0, &att);
Tony Barbourf43b6982014-11-25 13:18:32 -07001028
1029};
1030
Tony Barbour01999182015-04-09 12:58:51 -06001031void VkPipelineObj::AddShader(VkShaderObj* shader)
Tony Barbourf43b6982014-11-25 13:18:32 -07001032{
1033 m_shaderObjs.push_back(shader);
1034}
1035
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001036void VkPipelineObj::AddVertexInputAttribs(VkVertexInputAttributeDescription* vi_attrib, int count)
Tony Barbourf43b6982014-11-25 13:18:32 -07001037{
1038 m_vi_state.pVertexAttributeDescriptions = vi_attrib;
1039 m_vi_state.attributeCount = count;
1040}
1041
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001042void VkPipelineObj::AddVertexInputBindings(VkVertexInputBindingDescription* vi_binding, int count)
Tony Barbourf43b6982014-11-25 13:18:32 -07001043{
1044 m_vi_state.pVertexBindingDescriptions = vi_binding;
1045 m_vi_state.bindingCount = count;
1046}
1047
Tony Barbour01999182015-04-09 12:58:51 -06001048void VkPipelineObj::AddVertexDataBuffer(VkConstantBufferObj* vertexDataBuffer, int binding)
Tony Barbourf43b6982014-11-25 13:18:32 -07001049{
1050 m_vertexBufferObjs.push_back(vertexDataBuffer);
1051 m_vertexBufferBindings.push_back(binding);
1052 m_vertexBufferCount++;
1053}
1054
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001055void VkPipelineObj::AddColorAttachment(uint32_t binding, const VkPipelineCbAttachmentState *att)
Chia-I Wue7748802014-12-05 10:45:15 +08001056{
Tony Barbourfa6cac72015-01-16 14:27:35 -07001057 if (binding+1 > m_colorAttachments.size())
1058 {
1059 m_colorAttachments.resize(binding+1);
1060 }
1061 m_colorAttachments[binding] = *att;
1062}
1063
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001064void VkPipelineObj::SetDepthStencil(VkPipelineDsStateCreateInfo *ds_state)
Tony Barbourfa6cac72015-01-16 14:27:35 -07001065{
1066 m_ds_state.format = ds_state->format;
1067 m_ds_state.depthTestEnable = ds_state->depthTestEnable;
1068 m_ds_state.depthWriteEnable = ds_state->depthWriteEnable;
1069 m_ds_state.depthBoundsEnable = ds_state->depthBoundsEnable;
Tony Barbour8205d902015-04-16 15:59:00 -06001070 m_ds_state.depthCompareOp = ds_state->depthCompareOp;
Tony Barbourfa6cac72015-01-16 14:27:35 -07001071 m_ds_state.stencilTestEnable = ds_state->stencilTestEnable;
1072 m_ds_state.back = ds_state->back;
1073 m_ds_state.front = ds_state->front;
Chia-I Wue7748802014-12-05 10:45:15 +08001074}
1075
Tony Barbour01999182015-04-09 12:58:51 -06001076void VkPipelineObj::CreateVKPipeline(VkDescriptorSetObj &descriptorSet)
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001077{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -06001078 void* head_ptr = &m_ds_state;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001079 VkGraphicsPipelineCreateInfo info = {};
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001080
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001081 VkPipelineShaderStageCreateInfo* shaderCreateInfo;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001082
1083 for (int i=0; i<m_shaderObjs.size(); i++)
1084 {
Chia-I Wuf8385062015-01-04 16:27:24 +08001085 shaderCreateInfo = m_shaderObjs[i]->GetStageCreateInfo();
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001086 shaderCreateInfo->pNext = head_ptr;
1087 head_ptr = shaderCreateInfo;
1088 }
1089
1090 if (m_vi_state.attributeCount && m_vi_state.bindingCount)
1091 {
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001092 m_vi_state.sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_CREATE_INFO;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001093 m_vi_state.pNext = head_ptr;
1094 head_ptr = &m_vi_state;
1095 }
1096
Mark Lobodzinski556f7212015-04-17 14:11:39 -05001097 info.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
1098 info.pNext = head_ptr;
1099 info.flags = 0;
1100 info.layout = descriptorSet.GetPipelineLayout();
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001101
Tony Barbourfa6cac72015-01-16 14:27:35 -07001102 m_cb_state.attachmentCount = m_colorAttachments.size();
1103 m_cb_state.pAttachments = &m_colorAttachments[0];
1104
Chia-I Wuf5d81872014-12-29 14:24:14 +08001105 init(*m_device, info);
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001106}
Chia-I Wuf5d81872014-12-29 14:24:14 +08001107
Tony Barbour8205d902015-04-16 15:59:00 -06001108vector<VkDeviceMemory> VkMemoryRefManager::mem_refs() const
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001109{
Tony Barbour8205d902015-04-16 15:59:00 -06001110 std::vector<VkDeviceMemory> mems;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001111 if (this->mem_refs_.size()) {
1112 mems.reserve(this->mem_refs_.size());
1113 for (uint32_t i = 0; i < this->mem_refs_.size(); i++)
1114 mems.push_back(this->mem_refs_[i]);
1115 }
1116
1117 return mems;
Tony Barboure7f2c7c2014-12-17 11:57:31 -07001118}
1119
Tony Barbour01999182015-04-09 12:58:51 -06001120void VkMemoryRefManager::AddMemoryRefs(vk_testing::Object &vkObject)
Tony Barbourf43b6982014-11-25 13:18:32 -07001121{
Tony Barbour8205d902015-04-16 15:59:00 -06001122 const std::vector<VkDeviceMemory> mems = vkObject.memories();
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001123 AddMemoryRefs(mems);
1124}
Tony Barbourf43b6982014-11-25 13:18:32 -07001125
Tony Barbour8205d902015-04-16 15:59:00 -06001126void VkMemoryRefManager::AddMemoryRefs(vector<VkDeviceMemory> mem)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001127{
1128 for (size_t i = 0; i < mem.size(); i++) {
1129 if (mem[i] != NULL) {
1130 this->mem_refs_.push_back(mem[i]);
1131 }
Tony Barbourf43b6982014-11-25 13:18:32 -07001132 }
Tony Barbourf43b6982014-11-25 13:18:32 -07001133}
Tony Barbour408ca622014-12-04 14:33:33 -07001134
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001135void VkMemoryRefManager::EmitAddMemoryRefs(VkQueue queue)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001136{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -06001137 vkQueueAddMemReferences(queue, mem_refs_.size(), &mem_refs_[0]);
Tony Barbourf43b6982014-11-25 13:18:32 -07001138}
Tony Barbour408ca622014-12-04 14:33:33 -07001139
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001140void VkMemoryRefManager::EmitRemoveMemoryRefs(VkQueue queue)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001141{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -06001142 vkQueueRemoveMemReferences(queue, mem_refs_.size(), &mem_refs_[0]);
Mark Lobodzinski15427102015-02-18 16:38:17 -06001143}
1144
Tony Barbour01999182015-04-09 12:58:51 -06001145VkCommandBufferObj::VkCommandBufferObj(VkDeviceObj *device)
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001146 : vk_testing::CmdBuffer(*device, vk_testing::CmdBuffer::create_info(device->graphics_queue_node_index_))
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001147{
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001148 m_device = device;
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001149}
Tony Barboure8f14162014-12-10 17:28:39 -07001150
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001151VkCmdBuffer VkCommandBufferObj::GetBufferHandle()
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001152{
Chia-I Wuae0564f2014-12-28 15:12:48 +08001153 return obj();
Tony Barbour4f3e5a62014-12-10 14:34:45 -07001154}
Tony Barboure8f14162014-12-10 17:28:39 -07001155
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001156VkResult VkCommandBufferObj::BeginCommandBuffer(VkCmdBufferBeginInfo *pInfo)
Tony Barboure8f14162014-12-10 17:28:39 -07001157{
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001158 begin(pInfo);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001159 return VK_SUCCESS;
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001160}
1161
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001162VkResult VkCommandBufferObj::BeginCommandBuffer(VkRenderPass renderpass_obj, VkFramebuffer framebuffer_obj)
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001163{
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001164 begin(renderpass_obj, framebuffer_obj);
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001165 return VK_SUCCESS;
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001166}
1167
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001168VkResult VkCommandBufferObj::BeginCommandBuffer()
Jeremy Hayese0c3b222015-01-14 16:17:08 -07001169{
1170 begin();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001171 return VK_SUCCESS;
Tony Barboure8f14162014-12-10 17:28:39 -07001172}
1173
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001174VkResult VkCommandBufferObj::EndCommandBuffer()
Tony Barboure8f14162014-12-10 17:28:39 -07001175{
Chia-I Wuae0564f2014-12-28 15:12:48 +08001176 end();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001177 return VK_SUCCESS;
Tony Barboure8f14162014-12-10 17:28:39 -07001178}
1179
Tony Barbour8205d902015-04-16 15:59:00 -06001180void VkCommandBufferObj::PipelineBarrier(VkWaitEvent waitEvent, uint32_t pipeEventCount, const VkPipeEvent* pPipeEvents, uint32_t memBarrierCount, const void** ppMemBarriers)
Tony Barboure8f14162014-12-10 17:28:39 -07001181{
Tony Barbour8205d902015-04-16 15:59:00 -06001182 vkCmdPipelineBarrier(obj(), waitEvent, pipeEventCount, pPipeEvents, memBarrierCount, ppMemBarriers);
Tony Barboure8f14162014-12-10 17:28:39 -07001183}
1184
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001185void VkCommandBufferObj::ClearAllBuffers(VkClearColor clear_color, float depth_clear_color, uint32_t stencil_clear_color,
Tony Barbour01999182015-04-09 12:58:51 -06001186 VkDepthStencilObj *depthStencilObj)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001187{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -06001188 uint32_t i;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001189 const VkFlags output_mask =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001190 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
1191 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
1192 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
1193 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -06001194 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001195 const VkFlags input_mask = 0;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001196
1197 // whatever we want to do, we do it to the whole buffer
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001198 VkImageSubresourceRange srRange = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001199 srRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001200 srRange.baseMipLevel = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001201 srRange.mipLevels = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001202 srRange.baseArraySlice = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001203 srRange.arraySize = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001204
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001205 VkImageMemoryBarrier memory_barrier = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001206 memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
Mike Stroyan55658c22014-12-04 11:08:39 +00001207 memory_barrier.outputMask = output_mask;
1208 memory_barrier.inputMask = input_mask;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001209 memory_barrier.newLayout = VK_IMAGE_LAYOUT_CLEAR_OPTIMAL;
Mike Stroyan55658c22014-12-04 11:08:39 +00001210 memory_barrier.subresourceRange = srRange;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001211 VkImageMemoryBarrier *pmemory_barrier = &memory_barrier;
Mike Stroyan55658c22014-12-04 11:08:39 +00001212
Tony Barbour8205d902015-04-16 15:59:00 -06001213 VkPipeEvent set_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Mike Stroyan55658c22014-12-04 11:08:39 +00001214
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -07001215 for (i = 0; i < m_renderTargets.size(); i++) {
Mike Stroyan55658c22014-12-04 11:08:39 +00001216 memory_barrier.image = m_renderTargets[i]->image();
1217 memory_barrier.oldLayout = m_renderTargets[i]->layout();
Tony Barbour8205d902015-04-16 15:59:00 -06001218 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Mike Stroyan55658c22014-12-04 11:08:39 +00001219 m_renderTargets[i]->layout(memory_barrier.newLayout);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001220
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001221 vkCmdClearColorImage(obj(),
1222 m_renderTargets[i]->image(), VK_IMAGE_LAYOUT_CLEAR_OPTIMAL,
Courtney Goeltzenleuchter51cbf302015-03-25 11:25:10 -06001223 clear_color, 1, &srRange );
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001224
1225 mem_ref_mgr.AddMemoryRefs(*m_renderTargets[i]);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001226 }
1227
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001228 if (depthStencilObj)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001229 {
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001230 VkImageSubresourceRange dsRange = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001231 dsRange.aspect = VK_IMAGE_ASPECT_DEPTH;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001232 dsRange.baseMipLevel = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001233 dsRange.mipLevels = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001234 dsRange.baseArraySlice = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001235 dsRange.arraySize = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001236
1237 // prepare the depth buffer for clear
Mike Stroyan55658c22014-12-04 11:08:39 +00001238
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001239 memory_barrier.oldLayout = depthStencilObj->BindInfo()->layout;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001240 memory_barrier.newLayout = VK_IMAGE_LAYOUT_CLEAR_OPTIMAL;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001241 memory_barrier.image = depthStencilObj->obj();
Mike Stroyan55658c22014-12-04 11:08:39 +00001242 memory_barrier.subresourceRange = dsRange;
1243
Tony Barbour8205d902015-04-16 15:59:00 -06001244 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001245
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001246 vkCmdClearDepthStencil(obj(),
1247 depthStencilObj->obj(), VK_IMAGE_LAYOUT_CLEAR_OPTIMAL,
Courtney Goeltzenleuchter7e305322015-03-05 17:26:38 -07001248 depth_clear_color, stencil_clear_color,
1249 1, &dsRange);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001250 mem_ref_mgr.AddMemoryRefs(*depthStencilObj);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001251
1252 // prepare depth buffer for rendering
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001253 memory_barrier.image = depthStencilObj->obj();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001254 memory_barrier.oldLayout = VK_IMAGE_LAYOUT_CLEAR_OPTIMAL;
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001255 memory_barrier.newLayout = depthStencilObj->BindInfo()->layout;
Mike Stroyan55658c22014-12-04 11:08:39 +00001256 memory_barrier.subresourceRange = dsRange;
Tony Barbour8205d902015-04-16 15:59:00 -06001257 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001258 }
1259}
1260
Tony Barbour01999182015-04-09 12:58:51 -06001261void VkCommandBufferObj::PrepareAttachments()
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001262{
Mark Lobodzinskie2d07a52015-01-29 08:55:56 -06001263 uint32_t i;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001264 const VkFlags output_mask =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001265 VK_MEMORY_OUTPUT_CPU_WRITE_BIT |
1266 VK_MEMORY_OUTPUT_SHADER_WRITE_BIT |
1267 VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT |
1268 VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -06001269 VK_MEMORY_OUTPUT_TRANSFER_BIT;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001270 const VkFlags input_mask =
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001271 VK_MEMORY_INPUT_CPU_READ_BIT |
1272 VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT |
1273 VK_MEMORY_INPUT_INDEX_FETCH_BIT |
1274 VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT |
1275 VK_MEMORY_INPUT_UNIFORM_READ_BIT |
1276 VK_MEMORY_INPUT_SHADER_READ_BIT |
1277 VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT |
1278 VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT |
Courtney Goeltzenleuchterad870812015-04-15 15:29:59 -06001279 VK_MEMORY_INPUT_TRANSFER_BIT;
Mike Stroyan55658c22014-12-04 11:08:39 +00001280
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001281 VkImageSubresourceRange srRange = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001282 srRange.aspect = VK_IMAGE_ASPECT_COLOR;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001283 srRange.baseMipLevel = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001284 srRange.mipLevels = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001285 srRange.baseArraySlice = 0;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001286 srRange.arraySize = VK_LAST_MIP_OR_SLICE;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001287
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001288 VkImageMemoryBarrier memory_barrier = {};
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001289 memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
Mike Stroyan55658c22014-12-04 11:08:39 +00001290 memory_barrier.outputMask = output_mask;
1291 memory_barrier.inputMask = input_mask;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001292 memory_barrier.newLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
Mike Stroyan55658c22014-12-04 11:08:39 +00001293 memory_barrier.subresourceRange = srRange;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001294 VkImageMemoryBarrier *pmemory_barrier = &memory_barrier;
Mike Stroyan55658c22014-12-04 11:08:39 +00001295
Tony Barbour8205d902015-04-16 15:59:00 -06001296 VkPipeEvent set_events[] = { VK_PIPE_EVENT_COMMANDS_COMPLETE };
Mike Stroyan55658c22014-12-04 11:08:39 +00001297
Courtney Goeltzenleuchterdd745fd2015-03-05 16:47:18 -07001298 for(i=0; i<m_renderTargets.size(); i++)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001299 {
Mike Stroyan55658c22014-12-04 11:08:39 +00001300 memory_barrier.image = m_renderTargets[i]->image();
1301 memory_barrier.oldLayout = m_renderTargets[i]->layout();
Tony Barbour8205d902015-04-16 15:59:00 -06001302 vkCmdPipelineBarrier( obj(), VK_WAIT_EVENT_TOP_OF_PIPE, 1, set_events, 1, (const void **)&pmemory_barrier);
Mike Stroyan55658c22014-12-04 11:08:39 +00001303 m_renderTargets[i]->layout(memory_barrier.newLayout);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001304 }
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001305}
1306
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001307void VkCommandBufferObj::BeginRenderPass(VkRenderPass renderpass, VkFramebuffer framebuffer)
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001308{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001309 VkRenderPassBegin rp_begin = {
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001310 renderpass,
1311 framebuffer,
1312 };
1313
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001314 vkCmdBeginRenderPass( obj(), &rp_begin);
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001315}
1316
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001317void VkCommandBufferObj::EndRenderPass(VkRenderPass renderpass)
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001318{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001319 vkCmdEndRenderPass( obj(), renderpass);
Courtney Goeltzenleuchtere3b0f3a2015-04-03 15:25:24 -06001320}
1321
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001322void VkCommandBufferObj::BindStateObject(VkStateBindPoint stateBindPoint, VkDynamicStateObject stateObject)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001323{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001324 vkCmdBindDynamicStateObject( obj(), stateBindPoint, stateObject);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001325}
1326
Tony Barbour01999182015-04-09 12:58:51 -06001327void VkCommandBufferObj::AddRenderTarget(VkImageObj *renderTarget)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001328{
1329 m_renderTargets.push_back(renderTarget);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001330}
1331
Tony Barbour01999182015-04-09 12:58:51 -06001332void VkCommandBufferObj::DrawIndexed(uint32_t firstIndex, uint32_t indexCount, int32_t vertexOffset, uint32_t firstInstance, uint32_t instanceCount)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001333{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001334 vkCmdDrawIndexed(obj(), firstIndex, indexCount, vertexOffset, firstInstance, instanceCount);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001335}
1336
Tony Barbour01999182015-04-09 12:58:51 -06001337void VkCommandBufferObj::Draw(uint32_t firstVertex, uint32_t vertexCount, uint32_t firstInstance, uint32_t instanceCount)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001338{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001339 vkCmdDraw(obj(), firstVertex, vertexCount, firstInstance, instanceCount);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001340}
1341
Tony Barbour01999182015-04-09 12:58:51 -06001342void VkCommandBufferObj::QueueCommandBuffer()
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001343{
Tony Barbour67324f72015-04-08 10:11:29 -06001344 QueueCommandBuffer(NULL);
1345}
1346
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001347void VkCommandBufferObj::QueueCommandBuffer(VkFence fence)
Tony Barbour67324f72015-04-08 10:11:29 -06001348{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001349 VkResult err = VK_SUCCESS;
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001350
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001351 mem_ref_mgr.EmitAddMemoryRefs(m_device->m_queue);
1352
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001353 // submit the command buffer to the universal queue
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001354 err = vkQueueSubmit( m_device->m_queue, 1, &obj(), fence );
1355 ASSERT_VK_SUCCESS( err );
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001356
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001357 err = vkQueueWaitIdle( m_device->m_queue );
1358 ASSERT_VK_SUCCESS( err );
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001359
1360 // Wait for work to finish before cleaning up.
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001361 vkDeviceWaitIdle(m_device->device());
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001362
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001363 /*
1364 * Now that processing on this command buffer is complete
1365 * we can remove the memory references.
1366 */
1367 mem_ref_mgr.EmitRemoveMemoryRefs(m_device->m_queue);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001368}
1369
Tony Barbour01999182015-04-09 12:58:51 -06001370void VkCommandBufferObj::BindPipeline(VkPipelineObj &pipeline)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001371{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001372 vkCmdBindPipeline( obj(), VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline.obj() );
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001373 mem_ref_mgr.AddMemoryRefs(pipeline);
1374}
1375
Tony Barbour01999182015-04-09 12:58:51 -06001376void VkCommandBufferObj::BindDescriptorSet(VkDescriptorSetObj &descriptorSet)
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001377{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001378 VkDescriptorSet set_obj = descriptorSet.GetDescriptorSetHandle();
Chia-I Wu862c5572015-03-28 15:23:55 +08001379
Chia-I Wu714df452015-01-01 07:55:04 +08001380 // bind pipeline, vertex buffer (descriptor set) and WVP (dynamic buffer view)
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001381 vkCmdBindDescriptorSets(obj(), VK_PIPELINE_BIND_POINT_GRAPHICS,
Cody Northrop1a01b1d2015-04-16 13:41:56 -06001382 0, 1, &set_obj, 0, NULL );
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001383
1384 // Add descriptor set mem refs to command buffer's list
1385 mem_ref_mgr.AddMemoryRefs(descriptorSet.memories());
1386 mem_ref_mgr.AddMemoryRefs(descriptorSet.mem_ref_mgr.mem_refs());
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001387}
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001388
Tony Barbour01999182015-04-09 12:58:51 -06001389void VkCommandBufferObj::BindIndexBuffer(VkIndexBufferObj *indexBuffer, uint32_t offset)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001390{
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001391 vkCmdBindIndexBuffer(obj(), indexBuffer->obj(), offset, indexBuffer->GetIndexType());
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001392 mem_ref_mgr.AddMemoryRefs(*indexBuffer);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001393}
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001394
Tony Barbour8205d902015-04-16 15:59:00 -06001395void VkCommandBufferObj::BindVertexBuffer(VkConstantBufferObj *vertexBuffer, VkDeviceSize offset, uint32_t binding)
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001396{
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -06001397 vkCmdBindVertexBuffers(obj(), binding, 1, &vertexBuffer->obj(), &offset);
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001398 mem_ref_mgr.AddMemoryRefs(*vertexBuffer);
Tony Barbour1d7a55d2014-12-17 11:53:55 -07001399}
Courtney Goeltzenleuchter8d49dbd2015-04-07 17:13:38 -06001400
Tony Barbour01999182015-04-09 12:58:51 -06001401VkDepthStencilObj::VkDepthStencilObj()
Tony Barbour17c6ab12015-03-27 17:03:18 -06001402{
1403 m_initialized = false;
1404}
Tony Barbour01999182015-04-09 12:58:51 -06001405bool VkDepthStencilObj::Initialized()
Tony Barbour17c6ab12015-03-27 17:03:18 -06001406{
1407 return m_initialized;
1408}
1409
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001410VkDepthStencilBindInfo* VkDepthStencilObj::BindInfo()
Tony Barbour17c6ab12015-03-27 17:03:18 -06001411{
1412 return &m_depthStencilBindInfo;
1413}
1414
Tony Barbour01999182015-04-09 12:58:51 -06001415void VkDepthStencilObj::Init(VkDeviceObj *device, int32_t width, int32_t height)
Tony Barbour17c6ab12015-03-27 17:03:18 -06001416{
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -06001417 VkImageCreateInfo image_info;
1418 VkDepthStencilViewCreateInfo view_info;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001419
1420 m_device = device;
1421 m_initialized = true;
Tony Barbour8205d902015-04-16 15:59:00 -06001422 m_depth_stencil_fmt = VK_FORMAT_D16_UNORM;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001423
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001424 image_info.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001425 image_info.pNext = NULL;
Tony Barbour8205d902015-04-16 15:59:00 -06001426 image_info.imageType = VK_IMAGE_TYPE_2D;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001427 image_info.format = m_depth_stencil_fmt;
1428 image_info.extent.width = width;
1429 image_info.extent.height = height;
1430 image_info.extent.depth = 1;
1431 image_info.mipLevels = 1;
1432 image_info.arraySize = 1;
1433 image_info.samples = 1;
Tony Barbour8205d902015-04-16 15:59:00 -06001434 image_info.tiling = VK_IMAGE_TILING_OPTIMAL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001435 image_info.usage = VK_IMAGE_USAGE_DEPTH_STENCIL_BIT;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001436 image_info.flags = 0;
1437 init(*m_device, image_info);
1438
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001439 view_info.sType = VK_STRUCTURE_TYPE_DEPTH_STENCIL_VIEW_CREATE_INFO;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001440 view_info.pNext = NULL;
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001441 view_info.image = VK_NULL_HANDLE;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001442 view_info.mipLevel = 0;
1443 view_info.baseArraySlice = 0;
1444 view_info.arraySize = 1;
1445 view_info.flags = 0;
1446 view_info.image = obj();
1447 m_depthStencilView.init(*m_device, view_info);
1448
1449 m_depthStencilBindInfo.view = m_depthStencilView.obj();
Courtney Goeltzenleuchter9cc421e2015-04-08 15:36:08 -06001450 m_depthStencilBindInfo.layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
Tony Barbour17c6ab12015-03-27 17:03:18 -06001451}