blob: 5ec2346791c01fc8097f01cfb2e1965f336aa537 [file] [log] [blame]
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001/*
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002 * Vulkan
Tobin Ehlis10ae8c12015-03-17 16:24:32 -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
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <unordered_map>
29
Tobin Ehlisb835d1b2015-07-03 10:34:49 -060030#include "vk_loader_platform.h"
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060031#include "vk_dispatch_table_helper.h"
32#include "vk_struct_string_helper_cpp.h"
Tony Barbour18f71552015-04-22 11:36:22 -060033#if defined(__GNUC__)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060034#pragma GCC diagnostic ignored "-Wwrite-strings"
Tony Barbour18f71552015-04-22 11:36:22 -060035#endif
Tony Barbour18f71552015-04-22 11:36:22 -060036#if defined(__GNUC__)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060037#pragma GCC diagnostic warning "-Wwrite-strings"
Tony Barbour18f71552015-04-22 11:36:22 -060038#endif
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060039#include "vk_struct_size_helper.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060040#include "draw_state.h"
Tobin Ehlisa0cb02e2015-07-03 10:15:26 -060041#include "vk_layer_config.h"
Jon Ashburne68a9ff2015-05-25 14:11:37 -060042#include "vk_debug_marker_layer.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060043// The following is #included again to catch certain OS-specific functions
44// being used:
Tobin Ehlisb835d1b2015-07-03 10:34:49 -060045#include "vk_loader_platform.h"
Tobin Ehlisa0cb02e2015-07-03 10:15:26 -060046#include "vk_layer_msg.h"
47#include "vk_layer_table.h"
48#include "vk_layer_debug_marker_table.h"
49#include "vk_layer_data.h"
50#include "vk_layer_logging.h"
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -060051#include "vk_layer_extension_utils.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060052
Tobin Ehlisc16c3e92015-06-16 09:04:30 -060053typedef struct _layer_data {
54 debug_report_data *report_data;
55 // TODO: put instance data here
56 VkDbgMsgCallback logging_callback;
57} layer_data;
58
59static std::unordered_map<void *, layer_data *> layer_data_map;
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -060060static device_table_map draw_state_device_table_map;
61static instance_table_map draw_state_instance_table_map;
62
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -060063unordered_map<uint64_t, SAMPLER_NODE*> sampleMap;
64unordered_map<uint64_t, VkImageViewCreateInfo> imageMap;
65unordered_map<uint64_t, VkAttachmentViewCreateInfo> viewMap;
66unordered_map<uint64_t, BUFFER_NODE*> bufferMap;
67unordered_map<uint64_t, VkDynamicViewportStateCreateInfo> dynamicVpStateMap;
68unordered_map<uint64_t, VkDynamicRasterStateCreateInfo> dynamicRsStateMap;
69unordered_map<uint64_t, VkDynamicColorBlendStateCreateInfo> dynamicCbStateMap;
70unordered_map<uint64_t, VkDynamicDepthStencilStateCreateInfo> dynamicDsStateMap;
71unordered_map<uint64_t, PIPELINE_NODE*> pipelineMap;
72unordered_map<uint64_t, POOL_NODE*> poolMap;
73unordered_map<uint64_t, SET_NODE*> setMap;
74unordered_map<uint64_t, LAYOUT_NODE*> layoutMap;
Tobin Ehlis793ad302015-04-03 12:01:11 -060075// Map for layout chains
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -060076unordered_map<void*, GLOBAL_CB_NODE*> cmdBufferMap;
77unordered_map<uint64_t, VkRenderPassCreateInfo*> renderPassMap;
78unordered_map<uint64_t, VkFramebufferCreateInfo*> frameBufferMap;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060079
Jon Ashburneab34492015-06-01 09:37:38 -060080struct devExts {
81 bool debug_marker_enabled;
82};
83
Jon Ashburneab34492015-06-01 09:37:38 -060084static std::unordered_map<void *, struct devExts> deviceExtMap;
Jon Ashburn3950e1b2015-05-20 09:00:28 -060085
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060086static LOADER_PLATFORM_THREAD_ONCE_DECLARATION(g_initOnce);
Jon Ashburn8c5cbcf2015-05-07 10:27:37 -060087
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060088// TODO : This can be much smarter, using separate locks for separate global data
89static int globalLockInitialized = 0;
90static loader_platform_thread_mutex globalLock;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060091#define MAX_TID 513
92static loader_platform_thread_id g_tidMapping[MAX_TID] = {0};
93static uint32_t g_maxTID = 0;
Tobin Ehlisa16e8922015-06-16 15:50:44 -060094
95template layer_data *get_my_data_ptr<layer_data>(
96 void *data_key,
97 std::unordered_map<void *, layer_data *> &data_map);
98
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -060099debug_report_data *mdd(void* object)
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600100{
101 dispatch_key key = get_dispatch_key(object);
102 layer_data *my_data = get_my_data_ptr(key, layer_data_map);
103#if DISPATCH_MAP_DEBUG
104 fprintf(stderr, "MDD: map: %p, object: %p, key: %p, data: %p\n", &layer_data_map, object, key, my_data);
105#endif
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600106 return my_data->report_data;
107}
108
109debug_report_data *mid(VkInstance object)
110{
111 dispatch_key key = get_dispatch_key(object);
112 layer_data *my_data = get_my_data_ptr(get_dispatch_key(object), layer_data_map);
113#if DISPATCH_MAP_DEBUG
114 fprintf(stderr, "MID: map: %p, object: %p, key: %p, data: %p\n", &layer_data_map, object, key, my_data);
115#endif
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600116 return my_data->report_data;
117}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600118// Map actual TID to an index value and return that index
119// This keeps TIDs in range from 0-MAX_TID and simplifies compares between runs
120static uint32_t getTIDIndex() {
121 loader_platform_thread_id tid = loader_platform_get_thread_id();
122 for (uint32_t i = 0; i < g_maxTID; i++) {
123 if (tid == g_tidMapping[i])
124 return i;
125 }
126 // Don't yet have mapping, set it and return newly set index
127 uint32_t retVal = (uint32_t) g_maxTID;
128 g_tidMapping[g_maxTID++] = tid;
129 assert(g_maxTID < MAX_TID);
130 return retVal;
131}
132// Return a string representation of CMD_TYPE enum
133static string cmdTypeToString(CMD_TYPE cmd)
134{
135 switch (cmd)
136 {
137 case CMD_BINDPIPELINE:
138 return "CMD_BINDPIPELINE";
139 case CMD_BINDPIPELINEDELTA:
140 return "CMD_BINDPIPELINEDELTA";
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600141 case CMD_BINDDYNAMICVIEWPORTSTATE:
142 return "CMD_BINDDYNAMICVIEWPORTSTATE";
143 case CMD_BINDDYNAMICRASTERSTATE:
144 return "CMD_BINDDYNAMICRASTERSTATE";
145 case CMD_BINDDYNAMICCOLORBLENDSTATE:
146 return "CMD_BINDDYNAMICCOLORBLENDSTATE";
147 case CMD_BINDDYNAMICDEPTHSTENCILSTATE:
148 return "CMD_BINDDYNAMICDEPTHSTENCILSTATE";
Tobin Ehlis793ad302015-04-03 12:01:11 -0600149 case CMD_BINDDESCRIPTORSETS:
150 return "CMD_BINDDESCRIPTORSETS";
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600151 case CMD_BINDINDEXBUFFER:
152 return "CMD_BINDINDEXBUFFER";
153 case CMD_BINDVERTEXBUFFER:
154 return "CMD_BINDVERTEXBUFFER";
155 case CMD_DRAW:
156 return "CMD_DRAW";
157 case CMD_DRAWINDEXED:
158 return "CMD_DRAWINDEXED";
159 case CMD_DRAWINDIRECT:
160 return "CMD_DRAWINDIRECT";
161 case CMD_DRAWINDEXEDINDIRECT:
162 return "CMD_DRAWINDEXEDINDIRECT";
163 case CMD_DISPATCH:
164 return "CMD_DISPATCH";
165 case CMD_DISPATCHINDIRECT:
166 return "CMD_DISPATCHINDIRECT";
167 case CMD_COPYBUFFER:
168 return "CMD_COPYBUFFER";
169 case CMD_COPYIMAGE:
170 return "CMD_COPYIMAGE";
Tobin Ehlis793ad302015-04-03 12:01:11 -0600171 case CMD_BLITIMAGE:
172 return "CMD_BLITIMAGE";
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600173 case CMD_COPYBUFFERTOIMAGE:
174 return "CMD_COPYBUFFERTOIMAGE";
175 case CMD_COPYIMAGETOBUFFER:
176 return "CMD_COPYIMAGETOBUFFER";
177 case CMD_CLONEIMAGEDATA:
178 return "CMD_CLONEIMAGEDATA";
179 case CMD_UPDATEBUFFER:
180 return "CMD_UPDATEBUFFER";
181 case CMD_FILLBUFFER:
182 return "CMD_FILLBUFFER";
183 case CMD_CLEARCOLORIMAGE:
184 return "CMD_CLEARCOLORIMAGE";
Tobin Ehlis53eddda2015-07-01 16:46:13 -0600185 case CMD_CLEARCOLORATTACHMENT:
186 return "CMD_CLEARCOLORATTACHMENT";
187 case CMD_CLEARDEPTHSTENCILIMAGE:
188 return "CMD_CLEARDEPTHSTENCILIMAGE";
189 case CMD_CLEARDEPTHSTENCILATTACHMENT:
190 return "CMD_CLEARDEPTHSTENCILATTACHMENT";
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600191 case CMD_RESOLVEIMAGE:
192 return "CMD_RESOLVEIMAGE";
193 case CMD_SETEVENT:
194 return "CMD_SETEVENT";
195 case CMD_RESETEVENT:
196 return "CMD_RESETEVENT";
197 case CMD_WAITEVENTS:
198 return "CMD_WAITEVENTS";
199 case CMD_PIPELINEBARRIER:
200 return "CMD_PIPELINEBARRIER";
201 case CMD_BEGINQUERY:
202 return "CMD_BEGINQUERY";
203 case CMD_ENDQUERY:
204 return "CMD_ENDQUERY";
205 case CMD_RESETQUERYPOOL:
206 return "CMD_RESETQUERYPOOL";
207 case CMD_WRITETIMESTAMP:
208 return "CMD_WRITETIMESTAMP";
209 case CMD_INITATOMICCOUNTERS:
210 return "CMD_INITATOMICCOUNTERS";
211 case CMD_LOADATOMICCOUNTERS:
212 return "CMD_LOADATOMICCOUNTERS";
213 case CMD_SAVEATOMICCOUNTERS:
214 return "CMD_SAVEATOMICCOUNTERS";
215 case CMD_BEGINRENDERPASS:
216 return "CMD_BEGINRENDERPASS";
217 case CMD_ENDRENDERPASS:
218 return "CMD_ENDRENDERPASS";
219 case CMD_DBGMARKERBEGIN:
220 return "CMD_DBGMARKERBEGIN";
221 case CMD_DBGMARKEREND:
222 return "CMD_DBGMARKEREND";
223 default:
224 return "UNKNOWN";
225 }
226}
227// Block of code at start here for managing/tracking Pipeline state that this layer cares about
228// Just track 2 shaders for now
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600229#define VK_NUM_GRAPHICS_SHADERS VK_SHADER_STAGE_COMPUTE
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600230#define MAX_SLOTS 2048
231#define NUM_COMMAND_BUFFERS_TO_DISPLAY 10
232
233static uint64_t g_drawCount[NUM_DRAW_TYPES] = {0, 0, 0, 0};
234
235// TODO : Should be tracking lastBound per cmdBuffer and when draws occur, report based on that cmd buffer lastBound
236// Then need to synchronize the accesses based on cmd buffer so that if I'm reading state on one cmd buffer, updates
237// to that same cmd buffer by separate thread are not changing state from underneath us
238// Track the last cmd buffer touched by this thread
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600239static VkCmdBuffer g_lastCmdBuffer[MAX_TID] = {NULL};
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600240// Track the last group of CBs touched for displaying to dot file
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600241static GLOBAL_CB_NODE* g_pLastTouchedCB[NUM_COMMAND_BUFFERS_TO_DISPLAY] = {NULL};
242static uint32_t g_lastTouchedCBIndex = 0;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600243// Track the last global DrawState of interest touched by any thread
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600244static GLOBAL_CB_NODE* g_lastGlobalCB = NULL;
245static PIPELINE_NODE* g_lastBoundPipeline = NULL;
246static uint64_t g_lastBoundDynamicState[VK_NUM_STATE_BIND_POINT] = {0};
247static VkDescriptorSet g_lastBoundDescriptorSet = VkDescriptorSet(0);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600248#define MAX_BINDING 0xFFFFFFFF // Default vtxBinding value in CB Node to identify if no vtxBinding set
249
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600250//static DYNAMIC_STATE_NODE* g_pDynamicStateHead[VK_NUM_STATE_BIND_POINT] = {0};
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600251
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600252// Free all allocated nodes for Dynamic State objs
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600253static void deleteDynamicState()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600254{
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600255 for (auto ii=dynamicVpStateMap.begin(); ii!=dynamicVpStateMap.end(); ++ii) {
256 delete[] (*ii).second.pScissors;
257 delete[] (*ii).second.pViewports;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600258 }
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600259 dynamicVpStateMap.clear();
260 dynamicRsStateMap.clear();
261 dynamicCbStateMap.clear();
262 dynamicDsStateMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600263}
264// Free all sampler nodes
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600265static void deleteSamplers()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600266{
David Pinedod8f83d82015-04-27 16:36:17 -0600267 if (sampleMap.size() <= 0)
268 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600269 for (auto ii=sampleMap.begin(); ii!=sampleMap.end(); ++ii) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600270 delete (*ii).second;
271 }
Jon Ashburn25012f72015-06-15 10:58:28 -0600272 sampleMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600273}
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600274static VkImageViewCreateInfo* getImageViewCreateInfo(VkImageView view)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600275{
276 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600277 if (imageMap.find(view.handle) == imageMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600278 loader_platform_thread_unlock_mutex(&globalLock);
279 return NULL;
Tobin Ehlis9c536442015-06-19 13:00:59 -0600280 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600281 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600282 return &imageMap[view.handle];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600283 }
284}
285// Free all image nodes
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600286static void deleteImages()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600287{
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600288 if (imageMap.size() <= 0)
David Pinedod8f83d82015-04-27 16:36:17 -0600289 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600290 imageMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600291}
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600292static VkBufferViewCreateInfo* getBufferViewCreateInfo(VkBufferView view)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600293{
294 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600295 if (bufferMap.find(view.handle) == bufferMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600296 loader_platform_thread_unlock_mutex(&globalLock);
297 return NULL;
Tobin Ehlis9c536442015-06-19 13:00:59 -0600298 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600299 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600300 return &bufferMap[view.handle]->createInfo;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600301 }
302}
303// Free all buffer nodes
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600304static void deleteBuffers()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600305{
David Pinedod8f83d82015-04-27 16:36:17 -0600306 if (bufferMap.size() <= 0)
307 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600308 for (auto ii=bufferMap.begin(); ii!=bufferMap.end(); ++ii) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600309 delete (*ii).second;
310 }
Jon Ashburn25012f72015-06-15 10:58:28 -0600311 bufferMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600312}
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600313static GLOBAL_CB_NODE* getCBNode(VkCmdBuffer cb);
Tobin Ehlis53eddda2015-07-01 16:46:13 -0600314// Update global ptrs to reflect that specified cmdBuffer has been used
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600315static void updateCBTracking(VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600316{
317 g_lastCmdBuffer[getTIDIndex()] = cb;
318 GLOBAL_CB_NODE* pCB = getCBNode(cb);
319 loader_platform_thread_lock_mutex(&globalLock);
320 g_lastGlobalCB = pCB;
321 // TODO : This is a dumb algorithm. Need smart LRU that drops off oldest
322 for (uint32_t i = 0; i < NUM_COMMAND_BUFFERS_TO_DISPLAY; i++) {
323 if (g_pLastTouchedCB[i] == pCB) {
324 loader_platform_thread_unlock_mutex(&globalLock);
325 return;
326 }
327 }
328 g_pLastTouchedCB[g_lastTouchedCBIndex++] = pCB;
329 g_lastTouchedCBIndex = g_lastTouchedCBIndex % NUM_COMMAND_BUFFERS_TO_DISPLAY;
330 loader_platform_thread_unlock_mutex(&globalLock);
331}
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600332static VkBool32 hasDrawCmd(GLOBAL_CB_NODE* pCB)
Tobin Ehlis53eddda2015-07-01 16:46:13 -0600333{
334 for (uint32_t i=0; i<NUM_DRAW_TYPES; i++) {
335 if (pCB->drawCount[i])
336 return VK_TRUE;
337 }
338 return VK_FALSE;
339}
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600340// Check object status for selected flag state
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600341static VkBool32 validate_status(GLOBAL_CB_NODE* pNode, CBStatusFlags enable_mask, CBStatusFlags status_mask, CBStatusFlags status_flag, VkFlags msg_flags, DRAW_STATE_ERROR error_code, const char* fail_msg)
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600342{
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600343 // If non-zero enable mask is present, check it against status but if enable_mask
344 // is 0 then no enable required so we should always just check status
345 if ((!enable_mask) || (enable_mask & pNode->status)) {
346 if ((pNode->status & status_mask) != status_flag) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600347 // TODO : How to pass dispatchable objects as srcObject? Here src obj should be cmd buffer
348 log_msg(mdd(pNode->cmdBuffer), msg_flags, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, error_code, "DS",
349 "CB object %#" PRIxLEAST64 ": %s", reinterpret_cast<VkUintPtrLeast64>(pNode->cmdBuffer), fail_msg);
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600350 return VK_FALSE;
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600351 }
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600352 }
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600353 return VK_TRUE;
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600354}
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600355// For given dynamic state handle and type, return CreateInfo for that Dynamic State
356static void* getDynamicStateCreateInfo(const uint64_t handle, const DYNAMIC_STATE_BIND_POINT type)
357{
358 switch (type) {
359 case VK_STATE_BIND_POINT_VIEWPORT:
360 return (void*)&dynamicVpStateMap[handle];
361 case VK_STATE_BIND_POINT_RASTER:
362 return (void*)&dynamicRsStateMap[handle];
363 case VK_STATE_BIND_POINT_COLOR_BLEND:
364 return (void*)&dynamicCbStateMap[handle];
365 case VK_STATE_BIND_POINT_DEPTH_STENCIL:
366 return (void*)&dynamicDsStateMap[handle];
367 default:
368 return NULL;
369 }
370}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600371// Print the last bound dynamic state
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600372static void printDynamicState(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600373{
374 GLOBAL_CB_NODE* pCB = getCBNode(cb);
375 if (pCB) {
376 loader_platform_thread_lock_mutex(&globalLock);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600377 for (uint32_t i = 0; i < VK_NUM_STATE_BIND_POINT; i++) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600378 void* pDynStateCI = getDynamicStateCreateInfo(pCB->lastBoundDynamicState[i], (DYNAMIC_STATE_BIND_POINT)i);
379 if (pDynStateCI) {
380 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, dynamicStateBindPointToObjType((DYNAMIC_STATE_BIND_POINT)i), pCB->lastBoundDynamicState[i], 0, DRAWSTATE_NONE, "DS",
381 "Reporting CreateInfo for currently bound %s object %#" PRIxLEAST64, string_DYNAMIC_STATE_BIND_POINT((DYNAMIC_STATE_BIND_POINT)i).c_str(), pCB->lastBoundDynamicState[i]);
382 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, dynamicStateBindPointToObjType((DYNAMIC_STATE_BIND_POINT)i), pCB->lastBoundDynamicState[i], 0, DRAWSTATE_NONE, "DS",
383 dynamic_display(pDynStateCI, " ").c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600384 break;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600385 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600386 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
387 "No dynamic state of type %s bound", string_DYNAMIC_STATE_BIND_POINT((DYNAMIC_STATE_BIND_POINT)i).c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600388 }
389 }
390 loader_platform_thread_unlock_mutex(&globalLock);
391 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600392}
393// Retrieve pipeline node ptr for given pipeline object
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600394static PIPELINE_NODE* getPipeline(VkPipeline pipeline)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600395{
396 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600397 if (pipelineMap.find(pipeline.handle) == pipelineMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600398 loader_platform_thread_unlock_mutex(&globalLock);
399 return NULL;
400 }
401 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600402 return pipelineMap[pipeline.handle];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600403}
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600404// Validate state stored as flags at time of draw call
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600405static VkBool32 validate_draw_state_flags(GLOBAL_CB_NODE* pCB, VkBool32 indexedDraw) {
406 VkBool32 result;
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600407 result = validate_status(pCB, CBSTATUS_NONE, CBSTATUS_VIEWPORT_BOUND, CBSTATUS_VIEWPORT_BOUND, VK_DBG_REPORT_ERROR_BIT, DRAWSTATE_VIEWPORT_NOT_BOUND, "Viewport object not bound to this command buffer");
408 result &= validate_status(pCB, CBSTATUS_NONE, CBSTATUS_RASTER_BOUND, CBSTATUS_RASTER_BOUND, VK_DBG_REPORT_ERROR_BIT, DRAWSTATE_RASTER_NOT_BOUND, "Raster object not bound to this command buffer");
409 result &= validate_status(pCB, CBSTATUS_COLOR_BLEND_WRITE_ENABLE, CBSTATUS_COLOR_BLEND_BOUND, CBSTATUS_COLOR_BLEND_BOUND, VK_DBG_REPORT_ERROR_BIT, DRAWSTATE_COLOR_BLEND_NOT_BOUND, "Color-blend object not bound to this command buffer");
410 result &= validate_status(pCB, CBSTATUS_DEPTH_STENCIL_WRITE_ENABLE, CBSTATUS_DEPTH_STENCIL_BOUND, CBSTATUS_DEPTH_STENCIL_BOUND, VK_DBG_REPORT_ERROR_BIT, DRAWSTATE_DEPTH_STENCIL_NOT_BOUND, "Depth-stencil object not bound to this command buffer");
411 if (indexedDraw)
412 result &= validate_status(pCB, CBSTATUS_NONE, CBSTATUS_INDEX_BUFFER_BOUND, CBSTATUS_INDEX_BUFFER_BOUND, VK_DBG_REPORT_ERROR_BIT, DRAWSTATE_INDEX_BUFFER_NOT_BOUND, "Index buffer object not bound to this command buffer when Index Draw attempted");
413 return result;
414}
415// Validate overall state at the time of a draw call
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600416static VkBool32 validate_draw_state(GLOBAL_CB_NODE* pCB, VkBool32 indexedDraw) {
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600417 // First check flag states
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600418 VkBool32 result = validate_draw_state_flags(pCB, indexedDraw);
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600419 PIPELINE_NODE* pPipe = getPipeline(pCB->lastBoundPipeline);
420 // Now complete other state checks
Tobin Ehlis502480b2015-06-24 15:53:07 -0600421 if (pPipe && (pCB->lastBoundPipelineLayout != pPipe->graphicsPipelineCI.layout)) {
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600422 result = VK_FALSE;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600423 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_PIPELINE_LAYOUT, pCB->lastBoundPipelineLayout.handle, 0, DRAWSTATE_PIPELINE_LAYOUT_MISMATCH, "DS",
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600424 "Pipeline layout from last vkCmdBindDescriptorSets() (%s) does not match PSO Pipeline layout (%s)", pCB->lastBoundPipelineLayout, pPipe->graphicsPipelineCI.layout);
425 }
Tobin Ehlisd1fe4ec2015-06-23 11:22:55 -0600426 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600427 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Tobin Ehlisd1fe4ec2015-06-23 11:22:55 -0600428 "Draw cmd issued without an active RenderPass. vkCmdDraw*() must only be called within a RenderPass.");
429 }
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600430 return result;
431}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600432// For given sampler, return a ptr to its Create Info struct, or NULL if sampler not found
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600433static VkSamplerCreateInfo* getSamplerCreateInfo(const VkSampler sampler)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600434{
435 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600436 if (sampleMap.find(sampler.handle) == sampleMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600437 loader_platform_thread_unlock_mutex(&globalLock);
438 return NULL;
439 }
440 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600441 return &sampleMap[sampler.handle]->createInfo;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600442}
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600443// Verify that create state for a pipeline is valid
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600444static VkBool32 verifyPipelineCreateState(const VkDevice device, const PIPELINE_NODE* pPipeline)
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600445{
446 // VS is required
447 if (!(pPipeline->active_shaders & VK_SHADER_STAGE_VERTEX_BIT)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600448 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600449 "Invalid Pipeline CreateInfo State: Vtx Shader required");
450 return VK_FALSE;
451 }
452 // Either both or neither TC/TE shaders should be defined
453 if (((pPipeline->active_shaders & VK_SHADER_STAGE_TESS_CONTROL_BIT) == 0) !=
454 ((pPipeline->active_shaders & VK_SHADER_STAGE_TESS_EVALUATION_BIT) == 0) ) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600455 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600456 "Invalid Pipeline CreateInfo State: TE and TC shaders must be included or excluded as a pair");
457 return VK_FALSE;
458 }
459 // Compute shaders should be specified independent of Gfx shaders
460 if ((pPipeline->active_shaders & VK_SHADER_STAGE_COMPUTE_BIT) &&
461 (pPipeline->active_shaders & (VK_SHADER_STAGE_VERTEX_BIT | VK_SHADER_STAGE_TESS_CONTROL_BIT |
462 VK_SHADER_STAGE_TESS_EVALUATION_BIT | VK_SHADER_STAGE_GEOMETRY_BIT |
463 VK_SHADER_STAGE_FRAGMENT_BIT))) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600464 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600465 "Invalid Pipeline CreateInfo State: Do not specify Compute Shader for Gfx Pipeline");
466 return VK_FALSE;
467 }
468 // VK_PRIMITIVE_TOPOLOGY_PATCH primitive topology is only valid for tessellation pipelines.
469 // Mismatching primitive topology and tessellation fails graphics pipeline creation.
470 if (pPipeline->active_shaders & (VK_SHADER_STAGE_TESS_CONTROL_BIT | VK_SHADER_STAGE_TESS_EVALUATION_BIT) &&
471 (pPipeline->iaStateCI.topology != VK_PRIMITIVE_TOPOLOGY_PATCH)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600472 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600473 "Invalid Pipeline CreateInfo State: VK_PRIMITIVE_TOPOLOGY_PATCH must be set as IA topology for tessellation pipelines");
474 return VK_FALSE;
475 }
476 if ((pPipeline->iaStateCI.topology == VK_PRIMITIVE_TOPOLOGY_PATCH) &&
477 (~pPipeline->active_shaders & VK_SHADER_STAGE_TESS_CONTROL_BIT)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600478 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600479 "Invalid Pipeline CreateInfo State: VK_PRIMITIVE_TOPOLOGY_PATCH primitive topology is only valid for tessellation pipelines");
480 return VK_FALSE;
481 }
482 return VK_TRUE;
483}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600484// Init the pipeline mapping info based on pipeline create info LL tree
485// Threading note : Calls to this function should wrapped in mutex
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600486static PIPELINE_NODE* initPipeline(const VkGraphicsPipelineCreateInfo* pCreateInfo, PIPELINE_NODE* pBasePipeline)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600487{
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600488 PIPELINE_NODE* pPipeline = new PIPELINE_NODE;
489 if (pBasePipeline) {
490 memcpy((void*)pPipeline, (void*)pBasePipeline, sizeof(PIPELINE_NODE));
Tobin Ehlis9c536442015-06-19 13:00:59 -0600491 } else {
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600492 memset((void*)pPipeline, 0, sizeof(PIPELINE_NODE));
493 }
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600494 // First init create info
Tobin Ehliseba312c2015-04-01 08:40:34 -0600495 // TODO : Validate that no create info is incorrectly replicated
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600496 memcpy(&pPipeline->graphicsPipelineCI, pCreateInfo, sizeof(VkGraphicsPipelineCreateInfo));
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600497
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600498 size_t bufferSize = 0;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600499 const VkPipelineVertexInputStateCreateInfo* pVICI = NULL;
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600500 const VkPipelineColorBlendStateCreateInfo* pCBCI = NULL;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600501
502 for (uint32_t i = 0; i < pCreateInfo->stageCount; i++) {
503 const VkPipelineShaderStageCreateInfo *pPSSCI = &pCreateInfo->pStages[i];
504
505 switch (pPSSCI->stage) {
506 case VK_SHADER_STAGE_VERTEX:
507 memcpy(&pPipeline->vsCI, pPSSCI, sizeof(VkPipelineShaderStageCreateInfo));
508 pPipeline->active_shaders |= VK_SHADER_STAGE_VERTEX_BIT;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600509 break;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600510 case VK_SHADER_STAGE_TESS_CONTROL:
511 memcpy(&pPipeline->tcsCI, pPSSCI, sizeof(VkPipelineShaderStageCreateInfo));
512 pPipeline->active_shaders |= VK_SHADER_STAGE_TESS_CONTROL_BIT;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600513 break;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600514 case VK_SHADER_STAGE_TESS_EVALUATION:
515 memcpy(&pPipeline->tesCI, pPSSCI, sizeof(VkPipelineShaderStageCreateInfo));
516 pPipeline->active_shaders |= VK_SHADER_STAGE_TESS_EVALUATION_BIT;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600517 break;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600518 case VK_SHADER_STAGE_GEOMETRY:
519 memcpy(&pPipeline->gsCI, pPSSCI, sizeof(VkPipelineShaderStageCreateInfo));
520 pPipeline->active_shaders |= VK_SHADER_STAGE_GEOMETRY_BIT;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600521 break;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600522 case VK_SHADER_STAGE_FRAGMENT:
523 memcpy(&pPipeline->fsCI, pPSSCI, sizeof(VkPipelineShaderStageCreateInfo));
524 pPipeline->active_shaders |= VK_SHADER_STAGE_FRAGMENT_BIT;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600525 break;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600526 case VK_SHADER_STAGE_COMPUTE:
527 // TODO : Flag error, CS is specified through VkComputePipelineCreateInfo
528 pPipeline->active_shaders |= VK_SHADER_STAGE_COMPUTE_BIT;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600529 break;
530 default:
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600531 // TODO : Flag error
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600532 break;
533 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600534 }
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600535
536 if (pCreateInfo->pVertexInputState != NULL) {
537 memcpy((void*)&pPipeline->vertexInputCI, pCreateInfo->pVertexInputState , sizeof(VkPipelineVertexInputStateCreateInfo));
538 // Copy embedded ptrs
539 pVICI = pCreateInfo->pVertexInputState;
540 pPipeline->vtxBindingCount = pVICI->bindingCount;
541 if (pPipeline->vtxBindingCount) {
542 pPipeline->pVertexBindingDescriptions = new VkVertexInputBindingDescription[pPipeline->vtxBindingCount];
543 bufferSize = pPipeline->vtxBindingCount * sizeof(VkVertexInputBindingDescription);
544 memcpy((void*)pPipeline->pVertexBindingDescriptions, pVICI->pVertexBindingDescriptions, bufferSize);
545 }
546 pPipeline->vtxAttributeCount = pVICI->attributeCount;
547 if (pPipeline->vtxAttributeCount) {
548 pPipeline->pVertexAttributeDescriptions = new VkVertexInputAttributeDescription[pPipeline->vtxAttributeCount];
549 bufferSize = pPipeline->vtxAttributeCount * sizeof(VkVertexInputAttributeDescription);
550 memcpy((void*)pPipeline->pVertexAttributeDescriptions, pVICI->pVertexAttributeDescriptions, bufferSize);
551 }
552 pPipeline->graphicsPipelineCI.pVertexInputState = &pPipeline->vertexInputCI;
553 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600554 if (pCreateInfo->pInputAssemblyState != NULL) {
555 memcpy((void*)&pPipeline->iaStateCI, pCreateInfo->pInputAssemblyState, sizeof(VkPipelineInputAssemblyStateCreateInfo));
556 pPipeline->graphicsPipelineCI.pInputAssemblyState = &pPipeline->iaStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600557 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600558 if (pCreateInfo->pTessellationState != NULL) {
559 memcpy((void*)&pPipeline->tessStateCI, pCreateInfo->pTessellationState, sizeof(VkPipelineTessellationStateCreateInfo));
560 pPipeline->graphicsPipelineCI.pTessellationState = &pPipeline->tessStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600561 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600562 if (pCreateInfo->pViewportState != NULL) {
563 memcpy((void*)&pPipeline->vpStateCI, pCreateInfo->pViewportState, sizeof(VkPipelineViewportStateCreateInfo));
564 pPipeline->graphicsPipelineCI.pViewportState = &pPipeline->vpStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600565 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600566 if (pCreateInfo->pRasterState != NULL) {
567 memcpy((void*)&pPipeline->rsStateCI, pCreateInfo->pRasterState, sizeof(VkPipelineRasterStateCreateInfo));
568 pPipeline->graphicsPipelineCI.pRasterState = &pPipeline->rsStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600569 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600570 if (pCreateInfo->pMultisampleState != NULL) {
571 memcpy((void*)&pPipeline->msStateCI, pCreateInfo->pMultisampleState, sizeof(VkPipelineMultisampleStateCreateInfo));
572 pPipeline->graphicsPipelineCI.pMultisampleState = &pPipeline->msStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600573 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600574 if (pCreateInfo->pColorBlendState != NULL) {
575 memcpy((void*)&pPipeline->cbStateCI, pCreateInfo->pColorBlendState, sizeof(VkPipelineColorBlendStateCreateInfo));
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600576 // Copy embedded ptrs
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600577 pCBCI = pCreateInfo->pColorBlendState;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600578 pPipeline->attachmentCount = pCBCI->attachmentCount;
579 if (pPipeline->attachmentCount) {
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600580 pPipeline->pAttachments = new VkPipelineColorBlendAttachmentState[pPipeline->attachmentCount];
581 bufferSize = pPipeline->attachmentCount * sizeof(VkPipelineColorBlendAttachmentState);
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600582 memcpy((void*)pPipeline->pAttachments, pCBCI->pAttachments, bufferSize);
583 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600584 pPipeline->graphicsPipelineCI.pColorBlendState = &pPipeline->cbStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600585 }
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600586 if (pCreateInfo->pDepthStencilState != NULL) {
587 memcpy((void*)&pPipeline->dsStateCI, pCreateInfo->pDepthStencilState, sizeof(VkPipelineDepthStencilStateCreateInfo));
588 pPipeline->graphicsPipelineCI.pDepthStencilState = &pPipeline->dsStateCI;
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600589 }
590
591 // Copy over GraphicsPipelineCreateInfo structure embedded pointers
592 if (pCreateInfo->stageCount != 0) {
593 pPipeline->graphicsPipelineCI.pStages = new VkPipelineShaderStageCreateInfo[pCreateInfo->stageCount];
594 bufferSize = pCreateInfo->stageCount * sizeof(VkPipelineShaderStageCreateInfo);
595 memcpy((void*)pPipeline->graphicsPipelineCI.pStages, pCreateInfo->pStages, bufferSize);
596 }
597
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600598 return pPipeline;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600599}
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600600
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600601// Free the Pipeline nodes
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600602static void deletePipelines()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600603{
David Pinedod8f83d82015-04-27 16:36:17 -0600604 if (pipelineMap.size() <= 0)
605 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600606 for (auto ii=pipelineMap.begin(); ii!=pipelineMap.end(); ++ii) {
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600607 if ((*ii).second->graphicsPipelineCI.stageCount != 0) {
608 delete[] (*ii).second->graphicsPipelineCI.pStages;
609 }
Tobin Ehlisf313c8b2015-04-01 11:59:08 -0600610 if ((*ii).second->pVertexBindingDescriptions) {
611 delete[] (*ii).second->pVertexBindingDescriptions;
612 }
613 if ((*ii).second->pVertexAttributeDescriptions) {
614 delete[] (*ii).second->pVertexAttributeDescriptions;
615 }
616 if ((*ii).second->pAttachments) {
617 delete[] (*ii).second->pAttachments;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600618 }
619 delete (*ii).second;
620 }
Jon Ashburn25012f72015-06-15 10:58:28 -0600621 pipelineMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600622}
Tobin Ehliseba312c2015-04-01 08:40:34 -0600623// For given pipeline, return number of MSAA samples, or one if MSAA disabled
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600624static uint32_t getNumSamples(const VkPipeline pipeline)
Tobin Ehliseba312c2015-04-01 08:40:34 -0600625{
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600626 PIPELINE_NODE* pPipe = pipelineMap[pipeline.handle];
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600627 if (VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO == pPipe->msStateCI.sType) {
Tobin Ehlisf313c8b2015-04-01 11:59:08 -0600628 if (pPipe->msStateCI.multisampleEnable)
Tony Barbourdfd533a2015-06-26 10:18:34 -0600629 return pPipe->msStateCI.rasterSamples;
Tobin Ehliseba312c2015-04-01 08:40:34 -0600630 }
631 return 1;
632}
633// Validate state related to the PSO
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600634static void validatePipelineState(const GLOBAL_CB_NODE* pCB, const VkPipelineBindPoint pipelineBindPoint, const VkPipeline pipeline)
Tobin Ehliseba312c2015-04-01 08:40:34 -0600635{
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -0600636 if (VK_PIPELINE_BIND_POINT_GRAPHICS == pipelineBindPoint) {
Tobin Ehliseba312c2015-04-01 08:40:34 -0600637 // Verify that any MSAA request in PSO matches sample# in bound FB
638 uint32_t psoNumSamples = getNumSamples(pipeline);
639 if (pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600640 const VkRenderPassCreateInfo* pRPCI = renderPassMap[pCB->activeRenderPass.handle];
Chia-I Wu08accc62015-07-07 11:50:03 +0800641 const VkSubpassDescription* pSD = &pRPCI->pSubpasses[pCB->activeSubpass];
642 int subpassNumSamples = 0;
643 uint32_t i;
644
645 for (i = 0; i < pSD->colorCount; i++) {
646 uint32_t samples;
647
648 if (pSD->colorAttachments[i].attachment == VK_ATTACHMENT_UNUSED)
649 continue;
650
651 samples = pRPCI->pAttachments[pSD->colorAttachments[i].attachment].samples;
652 if (subpassNumSamples == 0) {
653 subpassNumSamples = samples;
654 } else if (subpassNumSamples != samples) {
655 subpassNumSamples = -1;
656 break;
657 }
658 }
659 if (pSD->depthStencilAttachment.attachment != VK_ATTACHMENT_UNUSED) {
660 const uint32_t samples = pRPCI->pAttachments[pSD->depthStencilAttachment.attachment].samples;
661 if (subpassNumSamples == 0)
662 subpassNumSamples = samples;
663 else if (subpassNumSamples != samples)
664 subpassNumSamples = -1;
665 }
666
667 if (psoNumSamples != subpassNumSamples) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600668 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_PIPELINE, pipeline.handle, 0, DRAWSTATE_NUM_SAMPLES_MISMATCH, "DS",
669 "Num samples mismatch! Binding PSO (%#" PRIxLEAST64 ") with %u samples while current RenderPass (%#" PRIxLEAST64 ") w/ %u samples!", pipeline.handle, psoNumSamples, pCB->activeRenderPass.handle, subpassNumSamples);
Tobin Ehliseba312c2015-04-01 08:40:34 -0600670 }
671 } else {
672 // TODO : I believe it's an error if we reach this point and don't have an activeRenderPass
673 // Verify and flag error as appropriate
674 }
675 // TODO : Add more checks here
676 } else {
677 // TODO : Validate non-gfx pipeline updates
678 }
679}
680
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600681// Block of code at start here specifically for managing/tracking DSs
682
Tobin Ehlis793ad302015-04-03 12:01:11 -0600683// Return Pool node ptr for specified pool or else NULL
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600684static POOL_NODE* getPoolNode(VkDescriptorPool pool)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600685{
686 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600687 if (poolMap.find(pool.handle) == poolMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600688 loader_platform_thread_unlock_mutex(&globalLock);
689 return NULL;
690 }
691 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600692 return poolMap[pool.handle];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600693}
694// Return Set node ptr for specified set or else NULL
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600695static SET_NODE* getSetNode(VkDescriptorSet set)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600696{
697 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600698 if (setMap.find(set.handle) == setMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600699 loader_platform_thread_unlock_mutex(&globalLock);
700 return NULL;
701 }
702 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600703 return setMap[set.handle];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600704}
705
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600706static LAYOUT_NODE* getLayoutNode(const VkDescriptorSetLayout layout) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600707 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600708 if (layoutMap.find(layout.handle) == layoutMap.end()) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600709 loader_platform_thread_unlock_mutex(&globalLock);
710 return NULL;
711 }
712 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600713 return layoutMap[layout.handle];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600714}
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600715// Return 1 if update struct is of valid type, 0 otherwise
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600716static VkBool32 validUpdateStruct(const VkDevice device, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600717{
718 char str[1024];
719 switch (pUpdateStruct->sType)
720 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800721 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
722 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600723 return 1;
724 default:
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600725 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_UPDATE_STRUCT, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600726 "Unexpected UPDATE struct of type %s (value %u) in vkUpdateDescriptors() struct tree", string_VkStructureType(pUpdateStruct->sType), pUpdateStruct->sType);
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600727 return 0;
728 }
729}
Tobin Ehlis793ad302015-04-03 12:01:11 -0600730// For given update struct, return binding
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600731static uint32_t getUpdateBinding(const VkDevice device, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600732{
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600733 char str[1024];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600734 switch (pUpdateStruct->sType)
735 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800736 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
737 return ((VkWriteDescriptorSet*)pUpdateStruct)->destBinding;
738 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
739 return ((VkCopyDescriptorSet*)pUpdateStruct)->destBinding;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600740 default:
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600741 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_UPDATE_STRUCT, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600742 "Unexpected UPDATE struct of type %s (value %u) in vkUpdateDescriptors() struct tree", string_VkStructureType(pUpdateStruct->sType), pUpdateStruct->sType);
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600743 return 0xFFFFFFFF;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600744 }
745}
Tobin Ehlis793ad302015-04-03 12:01:11 -0600746// Return count for given update struct
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600747static uint32_t getUpdateArrayIndex(const VkDevice device, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600748{
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600749 char str[1024];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600750 switch (pUpdateStruct->sType)
751 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800752 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
753 return ((VkWriteDescriptorSet*)pUpdateStruct)->destArrayElement;
754 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600755 // TODO : Need to understand this case better and make sure code is correct
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800756 return ((VkCopyDescriptorSet*)pUpdateStruct)->destArrayElement;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600757 default:
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600758 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_UPDATE_STRUCT, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600759 "Unexpected UPDATE struct of type %s (value %u) in vkUpdateDescriptors() struct tree", string_VkStructureType(pUpdateStruct->sType), pUpdateStruct->sType);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600760 return 0;
761 }
762}
Tobin Ehlis793ad302015-04-03 12:01:11 -0600763// Return count for given update struct
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600764static uint32_t getUpdateCount(const VkDevice device, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis793ad302015-04-03 12:01:11 -0600765{
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600766 char str[1024];
Tobin Ehlis793ad302015-04-03 12:01:11 -0600767 switch (pUpdateStruct->sType)
768 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800769 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
770 return ((VkWriteDescriptorSet*)pUpdateStruct)->count;
771 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
Tobin Ehlis793ad302015-04-03 12:01:11 -0600772 // TODO : Need to understand this case better and make sure code is correct
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800773 return ((VkCopyDescriptorSet*)pUpdateStruct)->count;
Tobin Ehlis793ad302015-04-03 12:01:11 -0600774 default:
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600775 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_UPDATE_STRUCT, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600776 "Unexpected UPDATE struct of type %s (value %u) in vkUpdateDescriptors() struct tree", string_VkStructureType(pUpdateStruct->sType), pUpdateStruct->sType);
Tobin Ehlis793ad302015-04-03 12:01:11 -0600777 return 0;
778 }
779}
780// For given Layout Node and binding, return index where that binding begins
781static uint32_t getBindingStartIndex(const LAYOUT_NODE* pLayout, const uint32_t binding)
782{
783 uint32_t offsetIndex = 0;
784 for (uint32_t i = 0; i<binding; i++) {
Chia-I Wu712bb5d2015-05-25 16:22:52 +0800785 offsetIndex += pLayout->createInfo.pBinding[i].arraySize;
Tobin Ehlis793ad302015-04-03 12:01:11 -0600786 }
787 return offsetIndex;
788}
789// For given layout node and binding, return last index that is updated
790static uint32_t getBindingEndIndex(const LAYOUT_NODE* pLayout, const uint32_t binding)
791{
792 uint32_t offsetIndex = 0;
793 for (uint32_t i = 0; i<=binding; i++) {
Chia-I Wu712bb5d2015-05-25 16:22:52 +0800794 offsetIndex += pLayout->createInfo.pBinding[i].arraySize;
Tobin Ehlis793ad302015-04-03 12:01:11 -0600795 }
796 return offsetIndex-1;
797}
798// For given layout and update, return the first overall index of the layout that is update
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600799static uint32_t getUpdateStartIndex(const VkDevice device, const LAYOUT_NODE* pLayout, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis793ad302015-04-03 12:01:11 -0600800{
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600801 return (getBindingStartIndex(pLayout, getUpdateBinding(device, pUpdateStruct))+getUpdateArrayIndex(device, pUpdateStruct));
Tobin Ehlis793ad302015-04-03 12:01:11 -0600802}
803// For given layout and update, return the last overall index of the layout that is update
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600804static uint32_t getUpdateEndIndex(const VkDevice device, const LAYOUT_NODE* pLayout, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis793ad302015-04-03 12:01:11 -0600805{
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600806 return (getBindingStartIndex(pLayout, getUpdateBinding(device, pUpdateStruct))+getUpdateArrayIndex(device, pUpdateStruct)+getUpdateCount(device, pUpdateStruct)-1);
Tobin Ehlis793ad302015-04-03 12:01:11 -0600807}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600808// Verify that the descriptor type in the update struct matches what's expected by the layout
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600809static VkBool32 validateUpdateType(const VkDevice device, const LAYOUT_NODE* pLayout, const GENERIC_HEADER* pUpdateStruct)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600810{
811 // First get actual type of update
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600812 VkDescriptorType actualType;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600813 uint32_t i = 0;
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600814 char str[1024];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600815 switch (pUpdateStruct->sType)
816 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800817 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
818 actualType = ((VkWriteDescriptorSet*)pUpdateStruct)->descriptorType;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600819 break;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800820 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
821 /* no need to validate */
822 return 1;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600823 break;
824 default:
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600825 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_UPDATE_STRUCT, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600826 "Unexpected UPDATE struct of type %s (value %u) in vkUpdateDescriptors() struct tree", string_VkStructureType(pUpdateStruct->sType), pUpdateStruct->sType);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600827 return 0;
828 }
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600829 for (i = getUpdateStartIndex(device, pLayout, pUpdateStruct); i <= getUpdateEndIndex(device, pLayout, pUpdateStruct); i++) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600830 if (pLayout->pTypes[i] != actualType)
831 return 0;
832 }
833 return 1;
834}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600835// Determine the update type, allocate a new struct of that type, shadow the given pUpdate
836// struct into the new struct and return ptr to shadow struct cast as GENERIC_HEADER
837// NOTE : Calls to this function should be wrapped in mutex
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600838static GENERIC_HEADER* shadowUpdateNode(const VkDevice device, GENERIC_HEADER* pUpdate)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600839{
840 GENERIC_HEADER* pNewNode = NULL;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800841 VkWriteDescriptorSet* pWDS = NULL;
842 VkCopyDescriptorSet* pCDS = NULL;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600843 size_t array_size = 0;
844 size_t base_array_size = 0;
845 size_t total_array_size = 0;
846 size_t baseBuffAddr = 0;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600847 char str[1024];
848 switch (pUpdate->sType)
849 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800850 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
851 pWDS = new VkWriteDescriptorSet;
852 pNewNode = (GENERIC_HEADER*)pWDS;
853 memcpy(pWDS, pUpdate, sizeof(VkWriteDescriptorSet));
854 pWDS->pDescriptors = new VkDescriptorInfo[pWDS->count];
855 array_size = sizeof(VkDescriptorInfo) * pWDS->count;
856 memcpy((void*)pWDS->pDescriptors, ((VkWriteDescriptorSet*)pUpdate)->pDescriptors, array_size);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600857 break;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800858 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
859 pCDS = new VkCopyDescriptorSet;
860 pUpdate = (GENERIC_HEADER*)pCDS;
861 memcpy(pCDS, pUpdate, sizeof(VkCopyDescriptorSet));
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600862 break;
863 default:
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600864 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_UPDATE_STRUCT, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600865 "Unexpected UPDATE struct of type %s (value %u) in vkUpdateDescriptors() struct tree", string_VkStructureType(pUpdate->sType), pUpdate->sType);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600866 return NULL;
867 }
868 // Make sure that pNext for the end of shadow copy is NULL
869 pNewNode->pNext = NULL;
870 return pNewNode;
871}
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800872// update DS mappings based on ppUpdateArray
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600873static VkBool32 dsUpdate(VkDevice device, VkStructureType type, uint32_t updateCount, const void* pUpdateArray)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600874{
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800875 const VkWriteDescriptorSet *pWDS = NULL;
876 const VkCopyDescriptorSet *pCDS = NULL;
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -0600877 VkBool32 result = 1;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800878
879 if (type == VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET)
880 pWDS = (const VkWriteDescriptorSet *) pUpdateArray;
881 else
882 pCDS = (const VkCopyDescriptorSet *) pUpdateArray;
883
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600884 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600885 LAYOUT_NODE* pLayout = NULL;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600886 VkDescriptorSetLayoutCreateInfo* pLayoutCI = NULL;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600887 // TODO : If pCIList is NULL, flag error
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600888 // Perform all updates
Tobin Ehlis793ad302015-04-03 12:01:11 -0600889 for (uint32_t i = 0; i < updateCount; i++) {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800890 VkDescriptorSet ds = (pWDS) ? pWDS->destSet : pCDS->destSet;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600891 SET_NODE* pSet = setMap[ds.handle]; // getSetNode() without locking
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800892 g_lastBoundDescriptorSet = pSet->set;
893 GENERIC_HEADER* pUpdate = (pWDS) ? (GENERIC_HEADER*) &pWDS[i] : (GENERIC_HEADER*) &pCDS[i];
Tobin Ehlis793ad302015-04-03 12:01:11 -0600894 pLayout = pSet->pLayout;
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600895 // First verify valid update struct
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600896 if (!validUpdateStruct(device, pUpdate)) {
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600897 result = 0;
898 break;
899 }
Tobin Ehlis793ad302015-04-03 12:01:11 -0600900 // Make sure that binding is within bounds
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600901 if (pLayout->createInfo.count < getUpdateBinding(device, pUpdate)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600902 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, ds.handle, 0, DRAWSTATE_INVALID_UPDATE_INDEX, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600903 "Descriptor Set %p does not have binding to match update binding %u for update type %s!", ds, getUpdateBinding(device, pUpdate), string_VkStructureType(pUpdate->sType));
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600904 result = 0;
Tobin Ehlis9c536442015-06-19 13:00:59 -0600905 } else {
Tobin Ehlis793ad302015-04-03 12:01:11 -0600906 // Next verify that update falls within size of given binding
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600907 if (getBindingEndIndex(pLayout, getUpdateBinding(device, pUpdate)) < getUpdateEndIndex(device, pLayout, pUpdate)) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600908 char str[48*1024]; // TODO : Keep count of layout CI structs and size this string dynamically based on that count
Tobin Ehlis793ad302015-04-03 12:01:11 -0600909 pLayoutCI = &pLayout->createInfo;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600910 string DSstr = vk_print_vkdescriptorsetlayoutcreateinfo(pLayoutCI, "{DS} ");
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600911 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, ds.handle, 0, DRAWSTATE_DESCRIPTOR_UPDATE_OUT_OF_BOUNDS, "DS",
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600912 "Descriptor update type of %s is out of bounds for matching binding %u in Layout w/ CI:\n%s!", string_VkStructureType(pUpdate->sType), getUpdateBinding(device, pUpdate), DSstr.c_str());
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600913 result = 0;
Tobin Ehlis9c536442015-06-19 13:00:59 -0600914 } else { // TODO : should we skip update on a type mismatch or force it?
Tobin Ehlis793ad302015-04-03 12:01:11 -0600915 // Layout bindings match w/ update ok, now verify that update is of the right type
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600916 if (!validateUpdateType(device, pLayout, pUpdate)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600917 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, ds.handle, 0, DRAWSTATE_DESCRIPTOR_TYPE_MISMATCH, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600918 "Descriptor update type of %s does not match overlapping binding type!", string_VkStructureType(pUpdate->sType));
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600919 result = 0;
Tobin Ehlis9c536442015-06-19 13:00:59 -0600920 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600921 // Save the update info
922 // TODO : Info message that update successful
923 // Create new update struct for this set's shadow copy
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600924 GENERIC_HEADER* pNewNode = shadowUpdateNode(device, pUpdate);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600925 if (NULL == pNewNode) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600926 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, ds.handle, 0, DRAWSTATE_OUT_OF_MEMORY, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -0600927 "Out of memory while attempting to allocate UPDATE struct in vkUpdateDescriptors()");
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600928 result = 0;
Tobin Ehlis9c536442015-06-19 13:00:59 -0600929 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600930 // Insert shadow node into LL of updates for this set
931 pNewNode->pNext = pSet->pUpdateStructs;
932 pSet->pUpdateStructs = pNewNode;
933 // Now update appropriate descriptor(s) to point to new Update node
Tobin Ehlis75283bf2015-06-18 15:59:33 -0600934 for (uint32_t j = getUpdateStartIndex(device, pLayout, pUpdate); j <= getUpdateEndIndex(device, pLayout, pUpdate); j++) {
Tobin Ehlis793ad302015-04-03 12:01:11 -0600935 assert(j<pSet->descriptorCount);
936 pSet->ppDescriptors[j] = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600937 }
938 }
939 }
940 }
941 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600942 }
943 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis0174fed2015-05-28 12:10:17 -0600944 return result;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600945}
946// Free the shadowed update node for this Set
947// NOTE : Calls to this function should be wrapped in mutex
948static void freeShadowUpdateTree(SET_NODE* pSet)
949{
950 GENERIC_HEADER* pShadowUpdate = pSet->pUpdateStructs;
951 pSet->pUpdateStructs = NULL;
952 GENERIC_HEADER* pFreeUpdate = pShadowUpdate;
953 // Clear the descriptor mappings as they will now be invalid
954 memset(pSet->ppDescriptors, 0, pSet->descriptorCount*sizeof(GENERIC_HEADER*));
955 while(pShadowUpdate) {
956 pFreeUpdate = pShadowUpdate;
957 pShadowUpdate = (GENERIC_HEADER*)pShadowUpdate->pNext;
958 uint32_t index = 0;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800959 VkWriteDescriptorSet * pWDS = NULL;
960 VkCopyDescriptorSet * pCDS = NULL;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600961 void** ppToFree = NULL;
962 switch (pFreeUpdate->sType)
963 {
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800964 case VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET:
965 pWDS = (VkWriteDescriptorSet*)pFreeUpdate;
966 if (pWDS->pDescriptors)
967 delete[] pWDS->pDescriptors;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600968 break;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800969 case VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET:
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600970 break;
971 default:
972 assert(0);
973 break;
974 }
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600975 delete pFreeUpdate;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600976 }
977}
Tobin Ehlis793ad302015-04-03 12:01:11 -0600978// Free all DS Pools including their Sets & related sub-structs
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600979// NOTE : Calls to this function should be wrapped in mutex
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600980static void deletePools()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600981{
David Pinedod8f83d82015-04-27 16:36:17 -0600982 if (poolMap.size() <= 0)
983 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600984 for (auto ii=poolMap.begin(); ii!=poolMap.end(); ++ii) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600985 SET_NODE* pSet = (*ii).second->pSets;
986 SET_NODE* pFreeSet = pSet;
987 while (pSet) {
988 pFreeSet = pSet;
989 pSet = pSet->pNext;
Tobin Ehlisecc6bd02015-04-08 10:58:37 -0600990 // Freeing layouts handled in deleteLayouts() function
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600991 // Free Update shadow struct tree
992 freeShadowUpdateTree(pFreeSet);
993 if (pFreeSet->ppDescriptors) {
Chris Forbes02038792015-06-04 10:49:27 +1200994 delete[] pFreeSet->ppDescriptors;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600995 }
996 delete pFreeSet;
997 }
998 if ((*ii).second->createInfo.pTypeCount) {
Chris Forbes02038792015-06-04 10:49:27 +1200999 delete[] (*ii).second->createInfo.pTypeCount;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001000 }
1001 delete (*ii).second;
1002 }
Jon Ashburn25012f72015-06-15 10:58:28 -06001003 poolMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001004}
Tobin Ehlisecc6bd02015-04-08 10:58:37 -06001005// WARN : Once deleteLayouts() called, any layout ptrs in Pool/Set data structure will be invalid
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001006// NOTE : Calls to this function should be wrapped in mutex
Tobin Ehlisecc6bd02015-04-08 10:58:37 -06001007static void deleteLayouts()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001008{
David Pinedod8f83d82015-04-27 16:36:17 -06001009 if (layoutMap.size() <= 0)
1010 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001011 for (auto ii=layoutMap.begin(); ii!=layoutMap.end(); ++ii) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001012 LAYOUT_NODE* pLayout = (*ii).second;
Tobin Ehlisecc6bd02015-04-08 10:58:37 -06001013 if (pLayout->createInfo.pBinding) {
1014 for (uint32_t i=0; i<pLayout->createInfo.count; i++) {
1015 if (pLayout->createInfo.pBinding[i].pImmutableSamplers)
1016 delete[] pLayout->createInfo.pBinding[i].pImmutableSamplers;
1017 }
1018 delete[] pLayout->createInfo.pBinding;
1019 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001020 if (pLayout->pTypes) {
Chris Forbes02038792015-06-04 10:49:27 +12001021 delete[] pLayout->pTypes;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001022 }
1023 delete pLayout;
1024 }
Jon Ashburn25012f72015-06-15 10:58:28 -06001025 layoutMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001026}
1027// Currently clearing a set is removing all previous updates to that set
1028// TODO : Validate if this is correct clearing behavior
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001029static void clearDescriptorSet(VkDescriptorSet set)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001030{
1031 SET_NODE* pSet = getSetNode(set);
1032 if (!pSet) {
1033 // TODO : Return error
Tobin Ehlisce132d82015-06-19 15:07:05 -06001034 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001035 loader_platform_thread_lock_mutex(&globalLock);
1036 freeShadowUpdateTree(pSet);
1037 loader_platform_thread_unlock_mutex(&globalLock);
1038 }
1039}
1040
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001041static void clearDescriptorPool(VkDevice device, VkDescriptorPool pool)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001042{
Tobin Ehlis793ad302015-04-03 12:01:11 -06001043 POOL_NODE* pPool = getPoolNode(pool);
1044 if (!pPool) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001045 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_POOL, pool.handle, 0, DRAWSTATE_INVALID_POOL, "DS",
1046 "Unable to find pool node for pool %#" PRIxLEAST64 " specified in vkResetDescriptorPool() call", pool.handle);
Tobin Ehlisce132d82015-06-19 15:07:05 -06001047 } else {
Tobin Ehlis793ad302015-04-03 12:01:11 -06001048 // For every set off of this pool, clear it
1049 SET_NODE* pSet = pPool->pSets;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001050 while (pSet) {
1051 clearDescriptorSet(pSet->set);
1052 }
1053 }
1054}
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001055// For given CB object, fetch associated CB Node from map
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001056static GLOBAL_CB_NODE* getCBNode(VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001057{
1058 loader_platform_thread_lock_mutex(&globalLock);
1059 if (cmdBufferMap.find(cb) == cmdBufferMap.end()) {
1060 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001061 // TODO : How to pass cb as srcObj here?
1062 log_msg(mdd(cb), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_INVALID_CMD_BUFFER, "DS",
1063 "Attempt to use CmdBuffer %#" PRIxLEAST64 " that doesn't exist!", reinterpret_cast<VkUintPtrLeast64>(cb));
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001064 return NULL;
1065 }
1066 loader_platform_thread_unlock_mutex(&globalLock);
1067 return cmdBufferMap[cb];
1068}
1069// Free all CB Nodes
1070// NOTE : Calls to this function should be wrapped in mutex
Tobin Ehlisecc6bd02015-04-08 10:58:37 -06001071static void deleteCmdBuffers()
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001072{
David Pinedod8f83d82015-04-27 16:36:17 -06001073 if (cmdBufferMap.size() <= 0)
1074 return;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001075 for (auto ii=cmdBufferMap.begin(); ii!=cmdBufferMap.end(); ++ii) {
Courtney Goeltzenleuchterea3117c2015-04-27 15:04:43 -06001076 vector<CMD_NODE*> cmd_node_list = (*ii).second->pCmds;
1077 while (!cmd_node_list.empty()) {
1078 CMD_NODE* cmd_node = cmd_node_list.back();
1079 delete cmd_node;
1080 cmd_node_list.pop_back();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001081 }
1082 delete (*ii).second;
1083 }
Jon Ashburn25012f72015-06-15 10:58:28 -06001084 cmdBufferMap.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001085}
Tobin Ehlis9c536442015-06-19 13:00:59 -06001086static void report_error_no_cb_begin(const VkCmdBuffer cb, const char* caller_name)
1087{
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001088 // TODO : How to pass cb as srcObj here?
1089 log_msg(mdd(cb), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NO_BEGIN_CMD_BUFFER, "DS",
Tobin Ehlis9c536442015-06-19 13:00:59 -06001090 "You must call vkBeginCommandBuffer() before this call to %s", (void*)caller_name);
1091}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001092static void addCmd(GLOBAL_CB_NODE* pCB, const CMD_TYPE cmd)
1093{
1094 CMD_NODE* pCmd = new CMD_NODE;
1095 if (pCmd) {
1096 // init cmd node and append to end of cmd LL
1097 memset(pCmd, 0, sizeof(CMD_NODE));
1098 pCmd->cmdNumber = ++pCB->numCmds;
1099 pCmd->type = cmd;
1100 pCB->pCmds.push_back(pCmd);
Tobin Ehlisce132d82015-06-19 15:07:05 -06001101 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001102 // TODO : How to pass cb as srcObj here?
1103 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_OUT_OF_MEMORY, "DS",
1104 "Out of memory while attempting to allocate new CMD_NODE for cmdBuffer %#" PRIxLEAST64, reinterpret_cast<VkUintPtrLeast64>(pCB->cmdBuffer));
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001105 }
1106}
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001107static void resetCB(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001108{
1109 GLOBAL_CB_NODE* pCB = getCBNode(cb);
1110 if (pCB) {
Courtney Goeltzenleuchter3597a202015-04-27 17:16:56 -06001111 vector<CMD_NODE*> cmd_list = pCB->pCmds;
1112 while (!cmd_list.empty()) {
1113 delete cmd_list.back();
1114 cmd_list.pop_back();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001115 }
Courtney Goeltzenleuchter3597a202015-04-27 17:16:56 -06001116 pCB->pCmds.clear();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001117 // Reset CB state
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001118 VkFlags saveFlags = pCB->flags;
Cody Northrope62183e2015-07-09 18:08:05 -06001119 VkCmdPool savedPool = pCB->pool;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001120 memset(pCB, 0, sizeof(GLOBAL_CB_NODE));
1121 pCB->cmdBuffer = cb;
1122 pCB->flags = saveFlags;
Cody Northrope62183e2015-07-09 18:08:05 -06001123 pCB->pool = savedPool;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001124 pCB->lastVtxBinding = MAX_BINDING;
1125 }
1126}
Tobin Ehlise382c5a2015-06-10 12:57:07 -06001127// Set PSO-related status bits for CB
1128static void set_cb_pso_status(GLOBAL_CB_NODE* pCB, const PIPELINE_NODE* pPipe)
1129{
1130 for (uint32_t i = 0; i < pPipe->cbStateCI.attachmentCount; i++) {
1131 if (0 != pPipe->pAttachments[i].channelWriteMask) {
1132 pCB->status |= CBSTATUS_COLOR_BLEND_WRITE_ENABLE;
1133 }
1134 }
1135 if (pPipe->dsStateCI.depthWriteEnable) {
1136 pCB->status |= CBSTATUS_DEPTH_STENCIL_WRITE_ENABLE;
1137 }
1138}
1139// Set dyn-state related status bits for an object node
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001140static void set_cb_dyn_status(GLOBAL_CB_NODE* pNode, DYNAMIC_STATE_BIND_POINT stateBindPoint) {
Tobin Ehlise382c5a2015-06-10 12:57:07 -06001141 if (stateBindPoint == VK_STATE_BIND_POINT_VIEWPORT) {
1142 pNode->status |= CBSTATUS_VIEWPORT_BOUND;
1143 } else if (stateBindPoint == VK_STATE_BIND_POINT_RASTER) {
1144 pNode->status |= CBSTATUS_RASTER_BOUND;
1145 } else if (stateBindPoint == VK_STATE_BIND_POINT_COLOR_BLEND) {
1146 pNode->status |= CBSTATUS_COLOR_BLEND_BOUND;
1147 } else if (stateBindPoint == VK_STATE_BIND_POINT_DEPTH_STENCIL) {
1148 pNode->status |= CBSTATUS_DEPTH_STENCIL_BOUND;
1149 }
1150}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001151// Print the last bound Gfx Pipeline
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001152static void printPipeline(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001153{
1154 GLOBAL_CB_NODE* pCB = getCBNode(cb);
1155 if (pCB) {
1156 PIPELINE_NODE *pPipeTrav = getPipeline(pCB->lastBoundPipeline);
1157 if (!pPipeTrav) {
1158 // nothing to print
Tobin Ehlisce132d82015-06-19 15:07:05 -06001159 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001160 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001161 vk_print_vkgraphicspipelinecreateinfo(&pPipeTrav->graphicsPipelineCI, "{DS}").c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001162 }
1163 }
1164}
Tobin Ehlisc4bdde12015-05-27 14:30:06 -06001165// Verify bound Pipeline State Object
Tobin Ehlis0174fed2015-05-28 12:10:17 -06001166static bool validateBoundPipeline(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001167{
1168 GLOBAL_CB_NODE* pCB = getCBNode(cb);
1169 if (pCB && pCB->lastBoundPipeline) {
1170 // First verify that we have a Node for bound pipeline
1171 PIPELINE_NODE *pPipeTrav = getPipeline(pCB->lastBoundPipeline);
1172 char str[1024];
1173 if (!pPipeTrav) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001174 log_msg(mdd(cb), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_PIPELINE_BOUND, "DS",
1175 "Can't find last bound Pipeline %#" PRIxLEAST64 "!", pCB->lastBoundPipeline.handle);
Tobin Ehlis0174fed2015-05-28 12:10:17 -06001176 return false;
Tobin Ehlisce132d82015-06-19 15:07:05 -06001177 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001178 // Verify Vtx binding
1179 if (MAX_BINDING != pCB->lastVtxBinding) {
1180 if (pCB->lastVtxBinding >= pPipeTrav->vtxBindingCount) {
1181 if (0 == pPipeTrav->vtxBindingCount) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001182 log_msg(mdd(cb), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_VTX_INDEX_OUT_OF_BOUNDS, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001183 "Vtx Buffer Index %u was bound, but no vtx buffers are attached to PSO.", pCB->lastVtxBinding);
Tobin Ehlis0174fed2015-05-28 12:10:17 -06001184 return false;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001185 }
1186 else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001187 log_msg(mdd(cb), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_VTX_INDEX_OUT_OF_BOUNDS, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001188 "Vtx binding Index of %u exceeds PSO pVertexBindingDescriptions max array index of %u.", pCB->lastVtxBinding, (pPipeTrav->vtxBindingCount - 1));
Tobin Ehlis0174fed2015-05-28 12:10:17 -06001189 return false;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001190 }
1191 }
1192 else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001193 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001194 vk_print_vkvertexinputbindingdescription(&pPipeTrav->pVertexBindingDescriptions[pCB->lastVtxBinding], "{DS}INFO : ").c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001195 }
1196 }
1197 }
Tobin Ehlis0174fed2015-05-28 12:10:17 -06001198 return true;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001199 }
Tobin Ehlis0174fed2015-05-28 12:10:17 -06001200 return false;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001201}
1202// Print details of DS config to stdout
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001203static void printDSConfig(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001204{
1205 char tmp_str[1024];
1206 char ds_config_str[1024*256] = {0}; // TODO : Currently making this buffer HUGE w/o overrun protection. Need to be smarter, start smaller, and grow as needed.
1207 GLOBAL_CB_NODE* pCB = getCBNode(cb);
Tobin Ehlis93f89e82015-06-09 08:39:32 -06001208 if (pCB && pCB->lastBoundDescriptorSet) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001209 SET_NODE* pSet = getSetNode(pCB->lastBoundDescriptorSet);
Tobin Ehlis793ad302015-04-03 12:01:11 -06001210 POOL_NODE* pPool = getPoolNode(pSet->pool);
1211 // Print out pool details
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001212 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
1213 "Details for pool %#" PRIxLEAST64 ".", pPool->pool.handle);
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001214 string poolStr = vk_print_vkdescriptorpoolcreateinfo(&pPool->createInfo, " ");
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001215 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001216 "%s", poolStr.c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001217 // Print out set details
1218 char prefix[10];
1219 uint32_t index = 0;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001220 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
1221 "Details for descriptor set %#" PRIxLEAST64 ".", pSet->set.handle);
Tobin Ehlis793ad302015-04-03 12:01:11 -06001222 LAYOUT_NODE* pLayout = pSet->pLayout;
1223 // Print layout details
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001224 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
1225 "Layout #%u, (object %#" PRIxLEAST64 ") for DS %#" PRIxLEAST64 ".", index+1, (void*)pLayout->layout.handle, (void*)pSet->set.handle);
Tobin Ehlis793ad302015-04-03 12:01:11 -06001226 sprintf(prefix, " [L%u] ", index);
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001227 string DSLstr = vk_print_vkdescriptorsetlayoutcreateinfo(&pLayout->createInfo, prefix).c_str();
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001228 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001229 "%s", DSLstr.c_str());
Tobin Ehlis793ad302015-04-03 12:01:11 -06001230 index++;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001231 GENERIC_HEADER* pUpdate = pSet->pUpdateStructs;
1232 if (pUpdate) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001233 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
1234 "Update Chain [UC] for descriptor set %#" PRIxLEAST64 ":", pSet->set.handle);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001235 sprintf(prefix, " [UC] ");
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001236 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001237 dynamic_display(pUpdate, prefix).c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001238 // TODO : If there is a "view" associated with this update, print CI for that view
Tobin Ehlisce132d82015-06-19 15:07:05 -06001239 } else {
Tobin Ehlisbf081f32015-06-15 08:41:17 -06001240 if (0 != pSet->descriptorCount) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001241 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
1242 "No Update Chain for descriptor set %#" PRIxLEAST64 " which has %u descriptors (vkUpdateDescriptors has not been called)", pSet->set.handle, pSet->descriptorCount);
Tobin Ehlisce132d82015-06-19 15:07:05 -06001243 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001244 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
1245 "FYI: No descriptors in descriptor set %#" PRIxLEAST64 ".", pSet->set.handle);
Tobin Ehlisbf081f32015-06-15 08:41:17 -06001246 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001247 }
1248 }
1249}
1250
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001251static void printCB(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001252{
1253 GLOBAL_CB_NODE* pCB = getCBNode(cb);
David Pinedod8f83d82015-04-27 16:36:17 -06001254 if (pCB && pCB->pCmds.size() > 0) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001255 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001256 "Cmds in CB %p", (void*)cb);
Courtney Goeltzenleuchterba348a92015-04-27 11:16:35 -06001257 vector<CMD_NODE*> pCmds = pCB->pCmds;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001258 for (auto ii=pCmds.begin(); ii!=pCmds.end(); ++ii) {
1259 // TODO : Need to pass cb as srcObj here
1260 log_msg(mdd(cb), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001261 " CMD#%lu: %s", (*ii)->cmdNumber, cmdTypeToString((*ii)->type).c_str());
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001262 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06001263 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001264 // Nothing to print
1265 }
1266}
1267
1268
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001269static void synchAndPrintDSConfig(const VkCmdBuffer cb)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001270{
Tobin Ehlis2717d132015-07-10 18:25:07 -06001271 // TODO : Re-enable these print funcs
1272// printDSConfig(cb);
1273// printPipeline(cb);
1274// printDynamicState(cb);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001275}
1276
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001277static void init_draw_state(layer_data *my_data)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001278{
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001279 uint32_t report_flags = 0;
1280 uint32_t debug_action = 0;
1281 FILE *log_output = NULL;
1282 const char *option_str;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001283 // initialize DrawState options
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001284 report_flags = getLayerOptionFlags("DrawStateReportFlags", 0);
1285 getLayerOptionEnum("DrawStateDebugAction", (uint32_t *) &debug_action);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001286
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001287 if (debug_action & VK_DBG_LAYER_ACTION_LOG_MSG)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001288 {
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001289 option_str = getLayerOption("DrawStateLogFilename");
1290 if (option_str)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001291 {
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001292 log_output = fopen(option_str, "w");
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001293 }
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001294 if (log_output == NULL)
1295 log_output = stdout;
1296
1297 layer_create_msg_callback(my_data->report_data, report_flags, log_callback, (void *) log_output, &my_data->logging_callback);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001298 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001299
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001300 if (!globalLockInitialized)
1301 {
1302 // TODO/TBD: Need to delete this mutex sometime. How??? One
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001303 // suggestion is to call this during vkCreateInstance(), and then we
1304 // can clean it up during vkDestroyInstance(). However, that requires
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001305 // that the layer have per-instance locks. We need to come back and
1306 // address this soon.
1307 loader_platform_thread_create_mutex(&globalLock);
1308 globalLockInitialized = 1;
1309 }
1310}
1311
Courtney Goeltzenleuchterabc035e2015-06-01 14:29:58 -06001312VK_LAYER_EXPORT VkResult VKAPI vkCreateInstance(const VkInstanceCreateInfo* pCreateInfo, VkInstance* pInstance)
1313{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001314 VkLayerInstanceDispatchTable *pTable = get_dispatch_table(draw_state_instance_table_map,*pInstance);
Courtney Goeltzenleuchterabc035e2015-06-01 14:29:58 -06001315 VkResult result = pTable->CreateInstance(pCreateInfo, pInstance);
1316
1317 if (result == VK_SUCCESS) {
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001318 layer_data *my_data = get_my_data_ptr(get_dispatch_key(*pInstance), layer_data_map);
1319 my_data->report_data = debug_report_create_instance(
1320 pTable,
1321 *pInstance,
1322 pCreateInfo->extensionCount,
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001323 pCreateInfo->ppEnabledExtensionNames);
Courtney Goeltzenleuchterd02a9642015-06-08 14:58:39 -06001324
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001325 init_draw_state(my_data);
Courtney Goeltzenleuchterabc035e2015-06-01 14:29:58 -06001326 }
1327 return result;
1328}
1329
Jon Ashburn3950e1b2015-05-20 09:00:28 -06001330/* hook DestroyInstance to remove tableInstanceMap entry */
1331VK_LAYER_EXPORT VkResult VKAPI vkDestroyInstance(VkInstance instance)
1332{
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001333 dispatch_key key = get_dispatch_key(instance);
1334 VkLayerInstanceDispatchTable *pTable = get_dispatch_table(draw_state_instance_table_map, instance);
1335 VkResult res = pTable->DestroyInstance(instance);
1336
1337 // Clean up logging callback, if any
1338 layer_data *my_data = get_my_data_ptr(key, layer_data_map);
1339 if (my_data->logging_callback) {
1340 layer_destroy_msg_callback(my_data->report_data, my_data->logging_callback);
1341 }
1342
Courtney Goeltzenleuchteree4027d2015-06-28 13:01:17 -06001343 layer_debug_report_destroy_instance(my_data->report_data);
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001344 layer_data_map.erase(pTable);
1345
1346 draw_state_instance_table_map.erase(key);
Jon Ashburn3950e1b2015-05-20 09:00:28 -06001347 return res;
1348}
1349
Jon Ashburne68a9ff2015-05-25 14:11:37 -06001350static void createDeviceRegisterExtensions(const VkDeviceCreateInfo* pCreateInfo, VkDevice device)
1351{
1352 uint32_t i, ext_idx;
Jon Ashburn747f2b62015-06-18 15:02:58 -06001353 VkLayerDispatchTable *pDisp = get_dispatch_table(draw_state_device_table_map, device);
Jon Ashburneab34492015-06-01 09:37:38 -06001354 deviceExtMap[pDisp].debug_marker_enabled = false;
Jon Ashburne68a9ff2015-05-25 14:11:37 -06001355
1356 for (i = 0; i < pCreateInfo->extensionCount; i++) {
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001357 if (strcmp(pCreateInfo->ppEnabledExtensionNames[i], DEBUG_MARKER_EXTENSION_NAME) == 0) {
Jon Ashburneab34492015-06-01 09:37:38 -06001358 /* Found a matching extension name, mark it enabled and init dispatch table*/
1359 initDebugMarkerTable(device);
1360 deviceExtMap[pDisp].debug_marker_enabled = true;
Jon Ashburne68a9ff2015-05-25 14:11:37 -06001361 }
1362
1363 }
1364}
1365
Tony Barbourd1c35722015-04-16 15:59:00 -06001366VK_LAYER_EXPORT VkResult VKAPI vkCreateDevice(VkPhysicalDevice gpu, const VkDeviceCreateInfo* pCreateInfo, VkDevice* pDevice)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001367{
Courtney Goeltzenleuchterca173b82015-06-25 18:01:43 -06001368 VkLayerDispatchTable *pDeviceTable = get_dispatch_table(draw_state_device_table_map, *pDevice);
1369 VkResult result = pDeviceTable->CreateDevice(gpu, pCreateInfo, pDevice);
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001370 if (result == VK_SUCCESS) {
1371 layer_data *my_instance_data = get_my_data_ptr(get_dispatch_key(gpu), layer_data_map);
1372 VkLayerDispatchTable *pTable = get_dispatch_table(draw_state_device_table_map, *pDevice);
1373 layer_data *my_device_data = get_my_data_ptr(get_dispatch_key(*pDevice), layer_data_map);
1374 my_device_data->report_data = layer_debug_report_create_device(my_instance_data->report_data, *pDevice);
Jon Ashburn747f2b62015-06-18 15:02:58 -06001375 createDeviceRegisterExtensions(pCreateInfo, *pDevice);
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001376 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001377 return result;
1378}
1379
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001380VK_LAYER_EXPORT VkResult VKAPI vkDestroyDevice(VkDevice device)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001381{
1382 // Free all the memory
1383 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlisecc6bd02015-04-08 10:58:37 -06001384 deletePipelines();
1385 deleteSamplers();
1386 deleteImages();
1387 deleteBuffers();
1388 deleteCmdBuffers();
1389 deleteDynamicState();
1390 deletePools();
1391 deleteLayouts();
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001392 loader_platform_thread_unlock_mutex(&globalLock);
Jon Ashburn3950e1b2015-05-20 09:00:28 -06001393
Jeremy Hayes5d29ce32015-06-19 11:37:38 -06001394 dispatch_key key = get_dispatch_key(device);
Jon Ashburn747f2b62015-06-18 15:02:58 -06001395 VkLayerDispatchTable *pDisp = get_dispatch_table(draw_state_device_table_map, device);
1396 VkResult result = pDisp->DestroyDevice(device);
1397 deviceExtMap.erase(pDisp);
Jeremy Hayes5d29ce32015-06-19 11:37:38 -06001398 draw_state_device_table_map.erase(key);
Jon Ashburneab34492015-06-01 09:37:38 -06001399 tableDebugMarkerMap.erase(pDisp);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001400 return result;
1401}
1402
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001403static const VkLayerProperties ds_global_layers[] = {
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -06001404 {
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -06001405 "DrawState",
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001406 VK_API_VERSION,
1407 VK_MAKE_VERSION(0, 1, 0),
1408 "Validation layer: DrawState",
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -06001409 }
Jon Ashburn9fd4cc42015-04-10 14:33:07 -06001410};
1411
Tony Barbour59a47322015-06-24 16:06:58 -06001412VK_LAYER_EXPORT VkResult VKAPI vkGetGlobalExtensionProperties(
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001413 const char *pLayerName,
1414 uint32_t *pCount,
1415 VkExtensionProperties* pProperties)
Jon Ashburn9fd4cc42015-04-10 14:33:07 -06001416{
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001417 /* DrawState does not have any global extensions */
1418 return util_GetExtensionProperties(0, NULL, pCount, pProperties);
1419}
Jon Ashburn9fd4cc42015-04-10 14:33:07 -06001420
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001421VK_LAYER_EXPORT VkResult VKAPI vkGetGlobalLayerProperties(
1422 uint32_t *pCount,
1423 VkLayerProperties* pProperties)
1424{
1425 return util_GetLayerProperties(ARRAY_SIZE(ds_global_layers),
1426 ds_global_layers,
1427 pCount, pProperties);
1428}
Jon Ashburn9fd4cc42015-04-10 14:33:07 -06001429
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001430static const VkExtensionProperties ds_device_extensions[] = {
1431 {
1432 DEBUG_MARKER_EXTENSION_NAME,
1433 VK_MAKE_VERSION(0, 1, 0),
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06001434 }
1435};
1436
1437static const VkLayerProperties ds_device_layers[] = {
1438 {
1439 "DrawState",
1440 VK_API_VERSION,
1441 VK_MAKE_VERSION(0, 1, 0),
1442 "Validation layer: DrawState",
1443 }
1444};
1445
1446VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceExtensionProperties(
1447 VkPhysicalDevice physicalDevice,
1448 const char* pLayerName,
1449 uint32_t* pCount,
1450 VkExtensionProperties* pProperties)
1451{
1452 /* Mem tracker does not have any physical device extensions */
1453 return util_GetExtensionProperties(ARRAY_SIZE(ds_device_extensions), ds_device_extensions,
1454 pCount, pProperties);
1455}
1456
1457VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceLayerProperties(
1458 VkPhysicalDevice physicalDevice,
1459 uint32_t* pCount,
1460 VkLayerProperties* pProperties)
1461{
1462 /* Mem tracker's physical device layers are the same as global */
1463 return util_GetLayerProperties(ARRAY_SIZE(ds_device_layers), ds_device_layers,
1464 pCount, pProperties);
Jon Ashburn9fd4cc42015-04-10 14:33:07 -06001465}
1466
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001467VK_LAYER_EXPORT VkResult VKAPI vkQueueSubmit(VkQueue queue, uint32_t cmdBufferCount, const VkCmdBuffer* pCmdBuffers, VkFence fence)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001468{
Tobin Ehlisa9f3d762015-05-22 12:38:16 -06001469 GLOBAL_CB_NODE* pCB = NULL;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001470 for (uint32_t i=0; i < cmdBufferCount; i++) {
1471 // Validate that cmd buffers have been updated
Tobin Ehlisa9f3d762015-05-22 12:38:16 -06001472 pCB = getCBNode(pCmdBuffers[i]);
1473 loader_platform_thread_lock_mutex(&globalLock);
1474 if (CB_UPDATE_COMPLETE != pCB->state) {
1475 // Flag error for using CB w/o vkEndCommandBuffer() called
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001476 // TODO : How to pass cb as srcObj?
1477 log_msg(mdd(queue), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NO_END_CMD_BUFFER, "DS",
1478 "You must call vkEndCommandBuffer() on CB %#" PRIxLEAST64 " before this call to vkQueueSubmit()!", reinterpret_cast<VkUintPtrLeast64>(pCB->cmdBuffer));
Tobin Ehlisc4bdde12015-05-27 14:30:06 -06001479 loader_platform_thread_unlock_mutex(&globalLock);
1480 return VK_ERROR_UNKNOWN;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -06001481 }
Tobin Ehlisdea6ddf2015-05-26 16:06:50 -06001482 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001483 }
Jon Ashburn3950e1b2015-05-20 09:00:28 -06001484
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001485 VkResult result = get_dispatch_table(draw_state_device_table_map, queue)->QueueSubmit(queue, cmdBufferCount, pCmdBuffers, fence);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001486 return result;
1487}
1488
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001489VK_LAYER_EXPORT VkResult VKAPI vkDestroyFence(VkDevice device, VkFence fence)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001490{
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001491 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyFence(device, fence);
1492 // TODO : Clean up any internal data structures using this obj.
1493 return result;
1494}
1495
1496VK_LAYER_EXPORT VkResult VKAPI vkDestroySemaphore(VkDevice device, VkSemaphore semaphore)
1497{
1498 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroySemaphore(device, semaphore);
1499 // TODO : Clean up any internal data structures using this obj.
1500 return result;
1501}
1502
1503VK_LAYER_EXPORT VkResult VKAPI vkDestroyEvent(VkDevice device, VkEvent event)
1504{
1505 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyEvent(device, event);
1506 // TODO : Clean up any internal data structures using this obj.
1507 return result;
1508}
1509
1510VK_LAYER_EXPORT VkResult VKAPI vkDestroyQueryPool(VkDevice device, VkQueryPool queryPool)
1511{
1512 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyQueryPool(device, queryPool);
1513 // TODO : Clean up any internal data structures using this obj.
1514 return result;
1515}
1516
1517VK_LAYER_EXPORT VkResult VKAPI vkDestroyBuffer(VkDevice device, VkBuffer buffer)
1518{
1519 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyBuffer(device, buffer);
1520 // TODO : Clean up any internal data structures using this obj.
1521 return result;
1522}
1523
1524VK_LAYER_EXPORT VkResult VKAPI vkDestroyBufferView(VkDevice device, VkBufferView bufferView)
1525{
1526 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyBufferView(device, bufferView);
1527 // TODO : Clean up any internal data structures using this obj.
1528 return result;
1529}
1530
1531VK_LAYER_EXPORT VkResult VKAPI vkDestroyImage(VkDevice device, VkImage image)
1532{
1533 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyImage(device, image);
1534 // TODO : Clean up any internal data structures using this obj.
1535 return result;
1536}
1537
1538VK_LAYER_EXPORT VkResult VKAPI vkDestroyImageView(VkDevice device, VkImageView imageView)
1539{
1540 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyImageView(device, imageView);
1541 // TODO : Clean up any internal data structures using this obj.
1542 return result;
1543}
1544
1545VK_LAYER_EXPORT VkResult VKAPI vkDestroyAttachmentView(VkDevice device, VkAttachmentView attachmentView)
1546{
1547 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyAttachmentView(device, attachmentView);
1548 // TODO : Clean up any internal data structures using this obj.
1549 return result;
1550}
1551
1552VK_LAYER_EXPORT VkResult VKAPI vkDestroyShaderModule(VkDevice device, VkShaderModule shaderModule)
1553{
1554 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyShaderModule(device, shaderModule);
1555 // TODO : Clean up any internal data structures using this obj.
1556 return result;
1557}
1558
1559VK_LAYER_EXPORT VkResult VKAPI vkDestroyShader(VkDevice device, VkShader shader)
1560{
1561 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyShader(device, shader);
1562 // TODO : Clean up any internal data structures using this obj.
1563 return result;
1564}
1565
1566VK_LAYER_EXPORT VkResult VKAPI vkDestroyPipeline(VkDevice device, VkPipeline pipeline)
1567{
1568 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyPipeline(device, pipeline);
1569 // TODO : Clean up any internal data structures using this obj.
1570 return result;
1571}
1572
1573VK_LAYER_EXPORT VkResult VKAPI vkDestroyPipelineLayout(VkDevice device, VkPipelineLayout pipelineLayout)
1574{
1575 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyPipelineLayout(device, pipelineLayout);
1576 // TODO : Clean up any internal data structures using this obj.
1577 return result;
1578}
1579
1580VK_LAYER_EXPORT VkResult VKAPI vkDestroySampler(VkDevice device, VkSampler sampler)
1581{
1582 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroySampler(device, sampler);
1583 // TODO : Clean up any internal data structures using this obj.
1584 return result;
1585}
1586
1587VK_LAYER_EXPORT VkResult VKAPI vkDestroyDescriptorSetLayout(VkDevice device, VkDescriptorSetLayout descriptorSetLayout)
1588{
1589 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyDescriptorSetLayout(device, descriptorSetLayout);
1590 // TODO : Clean up any internal data structures using this obj.
1591 return result;
1592}
1593
1594VK_LAYER_EXPORT VkResult VKAPI vkDestroyDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool)
1595{
1596 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyDescriptorPool(device, descriptorPool);
1597 // TODO : Clean up any internal data structures using this obj.
1598 return result;
1599}
1600
1601VK_LAYER_EXPORT VkResult VKAPI vkDestroyDynamicViewportState(VkDevice device, VkDynamicViewportState dynamicViewportState)
1602{
1603 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyDynamicViewportState(device, dynamicViewportState);
1604 // TODO : Clean up any internal data structures using this obj.
1605 return result;
1606}
1607
1608VK_LAYER_EXPORT VkResult VKAPI vkDestroyDynamicRasterState(VkDevice device, VkDynamicRasterState dynamicRasterState)
1609{
1610 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyDynamicRasterState(device, dynamicRasterState);
1611 // TODO : Clean up any internal data structures using this obj.
1612 return result;
1613}
1614
1615VK_LAYER_EXPORT VkResult VKAPI vkDestroyDynamicColorBlendState(VkDevice device, VkDynamicColorBlendState dynamicColorBlendState)
1616{
1617 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyDynamicColorBlendState(device, dynamicColorBlendState);
1618 // TODO : Clean up any internal data structures using this obj.
1619 return result;
1620}
1621
1622VK_LAYER_EXPORT VkResult VKAPI vkDestroyDynamicDepthStencilState(VkDevice device, VkDynamicDepthStencilState dynamicDepthStencilState)
1623{
1624 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyDynamicDepthStencilState(device, dynamicDepthStencilState);
1625 // TODO : Clean up any internal data structures using this obj.
1626 return result;
1627}
1628
1629VK_LAYER_EXPORT VkResult VKAPI vkDestroyCommandBuffer(VkDevice device, VkCmdBuffer commandBuffer)
1630{
1631 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyCommandBuffer(device, commandBuffer);
1632 // TODO : Clean up any internal data structures using this obj.
1633 return result;
1634}
1635
1636VK_LAYER_EXPORT VkResult VKAPI vkDestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer)
1637{
1638 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyFramebuffer(device, framebuffer);
1639 // TODO : Clean up any internal data structures using this obj.
1640 return result;
1641}
1642
1643VK_LAYER_EXPORT VkResult VKAPI vkDestroyRenderPass(VkDevice device, VkRenderPass renderPass)
1644{
1645 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyRenderPass(device, renderPass);
1646 // TODO : Clean up any internal data structures using this obj.
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001647 return result;
1648}
1649
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001650VK_LAYER_EXPORT VkResult VKAPI vkCreateBufferView(VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, VkBufferView* pView)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001651{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001652 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateBufferView(device, pCreateInfo, pView);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001653 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001654 loader_platform_thread_lock_mutex(&globalLock);
1655 BUFFER_NODE* pNewNode = new BUFFER_NODE;
1656 pNewNode->buffer = *pView;
1657 pNewNode->createInfo = *pCreateInfo;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001658 bufferMap[pView->handle] = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001659 loader_platform_thread_unlock_mutex(&globalLock);
1660 }
1661 return result;
1662}
1663
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001664VK_LAYER_EXPORT VkResult VKAPI vkCreateImageView(VkDevice device, const VkImageViewCreateInfo* pCreateInfo, VkImageView* pView)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001665{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001666 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateImageView(device, pCreateInfo, pView);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001667 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001668 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001669 imageMap[pView->handle] = *pCreateInfo;
Tobin Ehlis53eddda2015-07-01 16:46:13 -06001670 loader_platform_thread_unlock_mutex(&globalLock);
1671 }
1672 return result;
1673}
1674
Tobin Ehlisffe35812015-07-10 12:15:19 -06001675VkResult VKAPI vkCreateAttachmentView(
1676 VkDevice device,
1677 const VkAttachmentViewCreateInfo* pCreateInfo,
1678 VkAttachmentView* pView)
Tobin Ehlis53eddda2015-07-01 16:46:13 -06001679{
Tobin Ehlisffe35812015-07-10 12:15:19 -06001680 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateAttachmentView(device, pCreateInfo, pView);
Tobin Ehlis53eddda2015-07-01 16:46:13 -06001681 if (VK_SUCCESS == result) {
1682 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001683 viewMap[pView->handle] = *pCreateInfo;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001684 loader_platform_thread_unlock_mutex(&globalLock);
1685 }
1686 return result;
1687}
1688
Jon Ashburnc669cc62015-07-09 15:02:25 -06001689//TODO handle pipeline caches
1690VkResult VKAPI vkCreatePipelineCache(
1691 VkDevice device,
1692 const VkPipelineCacheCreateInfo* pCreateInfo,
1693 VkPipelineCache* pPipelineCache)
1694{
1695 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreatePipelineCache(device, pCreateInfo, pPipelineCache);
1696 return result;
1697}
1698
1699VkResult VKAPI vkDestroyPipelineCache(
1700 VkDevice device,
1701 VkPipelineCache pipelineCache)
1702{
1703 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->DestroyPipelineCache(device, pipelineCache);
1704 return result;
1705}
1706
1707size_t VKAPI vkGetPipelineCacheSize(
1708 VkDevice device,
1709 VkPipelineCache pipelineCache)
1710{
1711 size_t size = get_dispatch_table(draw_state_device_table_map, device)->GetPipelineCacheSize(device, pipelineCache);
1712 return size;
1713}
1714
1715VkResult VKAPI vkGetPipelineCacheData(
1716 VkDevice device,
1717 VkPipelineCache pipelineCache,
1718 void* pData)
1719{
1720 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->GetPipelineCacheData(device, pipelineCache, pData);
1721 return result;
1722}
1723
1724VkResult VKAPI vkMergePipelineCaches(
1725 VkDevice device,
1726 VkPipelineCache destCache,
1727 uint32_t srcCacheCount,
1728 const VkPipelineCache* pSrcCaches)
1729{
1730 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->MergePipelineCaches(device, destCache, srcCacheCount, pSrcCaches);
1731 return result;
1732}
1733
1734VK_LAYER_EXPORT VkResult VKAPI vkCreateGraphicsPipelines(VkDevice device, VkPipelineCache pipelineCache, uint32_t count, const VkGraphicsPipelineCreateInfo* pCreateInfos, VkPipeline* pPipelines)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001735{
Tobin Ehlis75283bf2015-06-18 15:59:33 -06001736 VkResult result = VK_ERROR_BAD_PIPELINE_DATA;
Jon Ashburnc669cc62015-07-09 15:02:25 -06001737 //TODO handle count > 1 and handle pipelineCache
Tobin Ehlis75283bf2015-06-18 15:59:33 -06001738 // The order of operations here is a little convoluted but gets the job done
1739 // 1. Pipeline create state is first shadowed into PIPELINE_NODE struct
1740 // 2. Create state is then validated (which uses flags setup during shadowing)
1741 // 3. If everything looks good, we'll then create the pipeline and add NODE to pipelineMap
1742 loader_platform_thread_lock_mutex(&globalLock);
Jon Ashburnc669cc62015-07-09 15:02:25 -06001743 PIPELINE_NODE* pPipeNode = initPipeline(pCreateInfos, NULL);
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -06001744 VkBool32 valid = verifyPipelineCreateState(device, pPipeNode);
Tobin Ehlis75283bf2015-06-18 15:59:33 -06001745 loader_platform_thread_unlock_mutex(&globalLock);
1746 if (VK_TRUE == valid) {
Jon Ashburnc669cc62015-07-09 15:02:25 -06001747 result = get_dispatch_table(draw_state_device_table_map, device)->CreateGraphicsPipelines(device, pipelineCache, count, pCreateInfos, pPipelines);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001748 log_msg(mdd(device), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_PIPELINE, (*pPipelines).handle, 0, DRAWSTATE_NONE, "DS",
1749 "Created Gfx Pipeline %#" PRIxLEAST64, (*pPipelines).handle);
Tobin Ehlis75283bf2015-06-18 15:59:33 -06001750 loader_platform_thread_lock_mutex(&globalLock);
Jon Ashburnc669cc62015-07-09 15:02:25 -06001751 pPipeNode->pipeline = *pPipelines;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001752 pipelineMap[pPipeNode->pipeline.handle] = pPipeNode;
Tobin Ehlis75283bf2015-06-18 15:59:33 -06001753 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlisce132d82015-06-19 15:07:05 -06001754 } else {
Tobin Ehlis75283bf2015-06-18 15:59:33 -06001755 if (pPipeNode) {
1756 // If we allocated a pipeNode, need to clean it up here
1757 delete[] pPipeNode->pVertexBindingDescriptions;
1758 delete[] pPipeNode->pVertexAttributeDescriptions;
1759 delete[] pPipeNode->pAttachments;
1760 delete pPipeNode;
1761 }
1762 }
Courtney Goeltzenleuchtere2aaad02015-04-13 16:16:04 -06001763 return result;
1764}
1765
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001766VK_LAYER_EXPORT VkResult VKAPI vkCreateSampler(VkDevice device, const VkSamplerCreateInfo* pCreateInfo, VkSampler* pSampler)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001767{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001768 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateSampler(device, pCreateInfo, pSampler);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001769 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001770 loader_platform_thread_lock_mutex(&globalLock);
1771 SAMPLER_NODE* pNewNode = new SAMPLER_NODE;
1772 pNewNode->sampler = *pSampler;
1773 pNewNode->createInfo = *pCreateInfo;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001774 sampleMap[pSampler->handle] = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001775 loader_platform_thread_unlock_mutex(&globalLock);
1776 }
1777 return result;
1778}
1779
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001780VK_LAYER_EXPORT VkResult VKAPI vkCreateDescriptorSetLayout(VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, VkDescriptorSetLayout* pSetLayout)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001781{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001782 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateDescriptorSetLayout(device, pCreateInfo, pSetLayout);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001783 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001784 LAYOUT_NODE* pNewNode = new LAYOUT_NODE;
1785 if (NULL == pNewNode) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001786 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT, (*pSetLayout).handle, 0, DRAWSTATE_OUT_OF_MEMORY, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001787 "Out of memory while attempting to allocate LAYOUT_NODE in vkCreateDescriptorSetLayout()");
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001788 }
1789 memset(pNewNode, 0, sizeof(LAYOUT_NODE));
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001790 memcpy((void*)&pNewNode->createInfo, pCreateInfo, sizeof(VkDescriptorSetLayoutCreateInfo));
1791 pNewNode->createInfo.pBinding = new VkDescriptorSetLayoutBinding[pCreateInfo->count];
1792 memcpy((void*)pNewNode->createInfo.pBinding, pCreateInfo->pBinding, sizeof(VkDescriptorSetLayoutBinding)*pCreateInfo->count);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001793 uint32_t totalCount = 0;
Tobin Ehlis793ad302015-04-03 12:01:11 -06001794 for (uint32_t i=0; i<pCreateInfo->count; i++) {
Chia-I Wu712bb5d2015-05-25 16:22:52 +08001795 totalCount += pCreateInfo->pBinding[i].arraySize;
Tobin Ehlis793ad302015-04-03 12:01:11 -06001796 if (pCreateInfo->pBinding[i].pImmutableSamplers) {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001797 VkSampler** ppIS = (VkSampler**)&pNewNode->createInfo.pBinding[i].pImmutableSamplers;
Chia-I Wu712bb5d2015-05-25 16:22:52 +08001798 *ppIS = new VkSampler[pCreateInfo->pBinding[i].arraySize];
1799 memcpy(*ppIS, pCreateInfo->pBinding[i].pImmutableSamplers, pCreateInfo->pBinding[i].arraySize*sizeof(VkSampler));
Tobin Ehlis793ad302015-04-03 12:01:11 -06001800 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001801 }
1802 if (totalCount > 0) {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001803 pNewNode->pTypes = new VkDescriptorType[totalCount];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001804 uint32_t offset = 0;
Tobin Ehlis793ad302015-04-03 12:01:11 -06001805 uint32_t j = 0;
1806 for (uint32_t i=0; i<pCreateInfo->count; i++) {
Chia-I Wu712bb5d2015-05-25 16:22:52 +08001807 for (j = 0; j < pCreateInfo->pBinding[i].arraySize; j++) {
Tobin Ehlis793ad302015-04-03 12:01:11 -06001808 pNewNode->pTypes[offset + j] = pCreateInfo->pBinding[i].descriptorType;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001809 }
Tobin Ehlis793ad302015-04-03 12:01:11 -06001810 offset += j;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001811 }
1812 }
1813 pNewNode->layout = *pSetLayout;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001814 pNewNode->startIndex = 0;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001815 pNewNode->endIndex = pNewNode->startIndex + totalCount - 1;
1816 assert(pNewNode->endIndex >= pNewNode->startIndex);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001817 // Put new node at Head of global Layer list
1818 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001819 layoutMap[pSetLayout->handle] = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001820 loader_platform_thread_unlock_mutex(&globalLock);
1821 }
1822 return result;
1823}
1824
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -05001825VkResult VKAPI vkCreatePipelineLayout(VkDevice device, const VkPipelineLayoutCreateInfo* pCreateInfo, VkPipelineLayout* pPipelineLayout)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001826{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001827 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreatePipelineLayout(device, pCreateInfo, pPipelineLayout);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001828 if (VK_SUCCESS == result) {
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -05001829 // TODO : Need to capture the pipeline layout
Tobin Ehlis793ad302015-04-03 12:01:11 -06001830 }
1831 return result;
1832}
1833
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001834VK_LAYER_EXPORT VkResult VKAPI vkCreateDescriptorPool(VkDevice device, VkDescriptorPoolUsage poolUsage, uint32_t maxSets, const VkDescriptorPoolCreateInfo* pCreateInfo, VkDescriptorPool* pDescriptorPool)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001835{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001836 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateDescriptorPool(device, poolUsage, maxSets, pCreateInfo, pDescriptorPool);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001837 if (VK_SUCCESS == result) {
Tobin Ehlis793ad302015-04-03 12:01:11 -06001838 // Insert this pool into Global Pool LL at head
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001839 log_msg(mdd(device), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_DESCRIPTOR_POOL, (*pDescriptorPool).handle, 0, DRAWSTATE_OUT_OF_MEMORY, "DS",
1840 "Created Descriptor Pool %#" PRIxLEAST64, (*pDescriptorPool).handle);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001841 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis793ad302015-04-03 12:01:11 -06001842 POOL_NODE* pNewNode = new POOL_NODE;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001843 if (NULL == pNewNode) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001844 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_POOL, (*pDescriptorPool).handle, 0, DRAWSTATE_OUT_OF_MEMORY, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001845 "Out of memory while attempting to allocate POOL_NODE in vkCreateDescriptorPool()");
Tobin Ehlisce132d82015-06-19 15:07:05 -06001846 } else {
Tobin Ehlis793ad302015-04-03 12:01:11 -06001847 memset(pNewNode, 0, sizeof(POOL_NODE));
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001848 VkDescriptorPoolCreateInfo* pCI = (VkDescriptorPoolCreateInfo*)&pNewNode->createInfo;
1849 memcpy((void*)pCI, pCreateInfo, sizeof(VkDescriptorPoolCreateInfo));
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001850 if (pNewNode->createInfo.count) {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001851 size_t typeCountSize = pNewNode->createInfo.count * sizeof(VkDescriptorTypeCount);
1852 pNewNode->createInfo.pTypeCount = new VkDescriptorTypeCount[typeCountSize];
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001853 memcpy((void*)pNewNode->createInfo.pTypeCount, pCreateInfo->pTypeCount, typeCountSize);
1854 }
Tobin Ehlis793ad302015-04-03 12:01:11 -06001855 pNewNode->poolUsage = poolUsage;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001856 pNewNode->maxSets = maxSets;
Tobin Ehlis793ad302015-04-03 12:01:11 -06001857 pNewNode->pool = *pDescriptorPool;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001858 poolMap[pDescriptorPool->handle] = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001859 }
1860 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlisce132d82015-06-19 15:07:05 -06001861 } else {
Tobin Ehlis793ad302015-04-03 12:01:11 -06001862 // Need to do anything if pool create fails?
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001863 }
1864 return result;
1865}
1866
Mike Stroyanb050c682015-04-17 12:36:38 -06001867VK_LAYER_EXPORT VkResult VKAPI vkResetDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001868{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001869 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->ResetDescriptorPool(device, descriptorPool);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001870 if (VK_SUCCESS == result) {
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001871 clearDescriptorPool(device, descriptorPool);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001872 }
1873 return result;
1874}
1875
Mike Stroyanb050c682015-04-17 12:36:38 -06001876VK_LAYER_EXPORT VkResult VKAPI vkAllocDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorSetUsage setUsage, uint32_t count, const VkDescriptorSetLayout* pSetLayouts, VkDescriptorSet* pDescriptorSets, uint32_t* pCount)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001877{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001878 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->AllocDescriptorSets(device, descriptorPool, setUsage, count, pSetLayouts, pDescriptorSets, pCount);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001879 if ((VK_SUCCESS == result) || (*pCount > 0)) {
Tobin Ehlis793ad302015-04-03 12:01:11 -06001880 POOL_NODE *pPoolNode = getPoolNode(descriptorPool);
1881 if (!pPoolNode) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001882 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_POOL, descriptorPool.handle, 0, DRAWSTATE_INVALID_POOL, "DS",
1883 "Unable to find pool node for pool %#" PRIxLEAST64 " specified in vkAllocDescriptorSets() call", descriptorPool.handle);
Tobin Ehlisce132d82015-06-19 15:07:05 -06001884 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001885 for (uint32_t i = 0; i < *pCount; i++) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001886 log_msg(mdd(device), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, pDescriptorSets[i].handle, 0, DRAWSTATE_NONE, "DS",
1887 "Created Descriptor Set %#" PRIxLEAST64, pDescriptorSets[i].handle);
Tobin Ehlis793ad302015-04-03 12:01:11 -06001888 // Create new set node and add to head of pool nodes
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001889 SET_NODE* pNewNode = new SET_NODE;
1890 if (NULL == pNewNode) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001891 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, pDescriptorSets[i].handle, 0, DRAWSTATE_OUT_OF_MEMORY, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001892 "Out of memory while attempting to allocate SET_NODE in vkAllocDescriptorSets()");
Tobin Ehlisce132d82015-06-19 15:07:05 -06001893 } else {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001894 memset(pNewNode, 0, sizeof(SET_NODE));
Tobin Ehlis793ad302015-04-03 12:01:11 -06001895 // Insert set at head of Set LL for this pool
1896 pNewNode->pNext = pPoolNode->pSets;
1897 pPoolNode->pSets = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001898 LAYOUT_NODE* pLayout = getLayoutNode(pSetLayouts[i]);
1899 if (NULL == pLayout) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001900 log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT, pSetLayouts[i].handle, 0, DRAWSTATE_INVALID_LAYOUT, "DS",
1901 "Unable to find set layout node for layout %#" PRIxLEAST64 " specified in vkAllocDescriptorSets() call", pSetLayouts[i].handle);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001902 }
Tobin Ehlis793ad302015-04-03 12:01:11 -06001903 pNewNode->pLayout = pLayout;
1904 pNewNode->pool = descriptorPool;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001905 pNewNode->set = pDescriptorSets[i];
1906 pNewNode->setUsage = setUsage;
1907 pNewNode->descriptorCount = pLayout->endIndex + 1;
1908 if (pNewNode->descriptorCount) {
1909 size_t descriptorArraySize = sizeof(GENERIC_HEADER*)*pNewNode->descriptorCount;
1910 pNewNode->ppDescriptors = new GENERIC_HEADER*[descriptorArraySize];
1911 memset(pNewNode->ppDescriptors, 0, descriptorArraySize);
1912 }
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001913 setMap[pDescriptorSets[i].handle] = pNewNode;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001914 }
1915 }
1916 }
1917 }
1918 return result;
1919}
1920
Tony Barbour34ec6922015-07-10 10:50:45 -06001921VK_LAYER_EXPORT VkResult VKAPI vkFreeDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, uint32_t count, const VkDescriptorSet* pDescriptorSets)
1922{
1923 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->FreeDescriptorSets(device, descriptorPool, count, pDescriptorSets);
1924 // TODO : Clean up any internal data structures using this obj.
1925 return result;
1926}
1927
Chia-I Wu9d00ed72015-05-25 16:27:55 +08001928VK_LAYER_EXPORT VkResult VKAPI vkUpdateDescriptorSets(VkDevice device, uint32_t writeCount, const VkWriteDescriptorSet* pDescriptorWrites, uint32_t copyCount, const VkCopyDescriptorSet* pDescriptorCopies)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001929{
Tobin Ehlisa16e8922015-06-16 15:50:44 -06001930 if (dsUpdate(device, VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET, writeCount, pDescriptorWrites) &&
1931 dsUpdate(device, VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET, copyCount, pDescriptorCopies)) {
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001932 return get_dispatch_table(draw_state_device_table_map, device)->UpdateDescriptorSets(device, writeCount, pDescriptorWrites, copyCount, pDescriptorCopies);
Jon Ashburn3950e1b2015-05-20 09:00:28 -06001933 }
1934 return VK_ERROR_UNKNOWN;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001935}
1936
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001937VK_LAYER_EXPORT VkResult VKAPI vkCreateDynamicViewportState(VkDevice device, const VkDynamicViewportStateCreateInfo* pCreateInfo, VkDynamicViewportState* pState)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001938{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001939 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateDynamicViewportState(device, pCreateInfo, pState);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001940 VkDynamicViewportStateCreateInfo local_ci;
1941 memcpy(&local_ci, pCreateInfo, sizeof(VkDynamicViewportStateCreateInfo));
1942 local_ci.pViewports = new VkViewport[pCreateInfo->viewportAndScissorCount];
1943 local_ci.pScissors = new VkRect2D[pCreateInfo->viewportAndScissorCount];
1944 loader_platform_thread_lock_mutex(&globalLock);
1945 dynamicVpStateMap[pState->handle] = local_ci;
1946 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001947 return result;
1948}
1949
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001950VK_LAYER_EXPORT VkResult VKAPI vkCreateDynamicRasterState(VkDevice device, const VkDynamicRasterStateCreateInfo* pCreateInfo, VkDynamicRasterState* pState)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001951{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001952 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateDynamicRasterState(device, pCreateInfo, pState);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001953 //insertDynamicState(*pState, (GENERIC_HEADER*)pCreateInfo, VK_STATE_BIND_POINT_RASTER);
1954 loader_platform_thread_lock_mutex(&globalLock);
1955 dynamicRsStateMap[pState->handle] = *pCreateInfo;
1956 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001957 return result;
1958}
1959
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001960VK_LAYER_EXPORT VkResult VKAPI vkCreateDynamicColorBlendState(VkDevice device, const VkDynamicColorBlendStateCreateInfo* pCreateInfo, VkDynamicColorBlendState* pState)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001961{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001962 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateDynamicColorBlendState(device, pCreateInfo, pState);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001963 //insertDynamicState(*pState, (GENERIC_HEADER*)pCreateInfo, VK_STATE_BIND_POINT_COLOR_BLEND);
1964 loader_platform_thread_lock_mutex(&globalLock);
1965 dynamicCbStateMap[pState->handle] = *pCreateInfo;
1966 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001967 return result;
1968}
1969
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001970VK_LAYER_EXPORT VkResult VKAPI vkCreateDynamicDepthStencilState(VkDevice device, const VkDynamicDepthStencilStateCreateInfo* pCreateInfo, VkDynamicDepthStencilState* pState)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001971{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001972 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateDynamicDepthStencilState(device, pCreateInfo, pState);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06001973 //insertDynamicState(*pState, (GENERIC_HEADER*)pCreateInfo, VK_STATE_BIND_POINT_DEPTH_STENCIL);
1974 loader_platform_thread_lock_mutex(&globalLock);
1975 dynamicDsStateMap[pState->handle] = *pCreateInfo;
1976 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001977 return result;
1978}
1979
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001980VK_LAYER_EXPORT VkResult VKAPI vkCreateCommandBuffer(VkDevice device, const VkCmdBufferCreateInfo* pCreateInfo, VkCmdBuffer* pCmdBuffer)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001981{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06001982 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateCommandBuffer(device, pCreateInfo, pCmdBuffer);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06001983 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001984 loader_platform_thread_lock_mutex(&globalLock);
1985 GLOBAL_CB_NODE* pCB = new GLOBAL_CB_NODE;
1986 memset(pCB, 0, sizeof(GLOBAL_CB_NODE));
1987 pCB->cmdBuffer = *pCmdBuffer;
1988 pCB->flags = pCreateInfo->flags;
Cody Northrope62183e2015-07-09 18:08:05 -06001989 pCB->pool = pCreateInfo->cmdPool;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001990 pCB->lastVtxBinding = MAX_BINDING;
1991 cmdBufferMap[*pCmdBuffer] = pCB;
1992 loader_platform_thread_unlock_mutex(&globalLock);
1993 updateCBTracking(*pCmdBuffer);
1994 }
1995 return result;
1996}
1997
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06001998VK_LAYER_EXPORT VkResult VKAPI vkBeginCommandBuffer(VkCmdBuffer cmdBuffer, const VkCmdBufferBeginInfo* pBeginInfo)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06001999{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06002000 VkResult result = get_dispatch_table(draw_state_device_table_map, cmdBuffer)->BeginCommandBuffer(cmdBuffer, pBeginInfo);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002001 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002002 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2003 if (pCB) {
2004 if (CB_NEW != pCB->state)
2005 resetCB(cmdBuffer);
2006 pCB->state = CB_UPDATE_ACTIVE;
Tobin Ehlisce132d82015-06-19 15:07:05 -06002007 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002008 // TODO : Need to pass cmdBuffer as objType here
2009 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_INVALID_CMD_BUFFER, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06002010 "In vkBeginCommandBuffer() and unable to find CmdBuffer Node for CB %p!", (void*)cmdBuffer);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002011 }
2012 updateCBTracking(cmdBuffer);
2013 }
2014 return result;
2015}
2016
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002017VK_LAYER_EXPORT VkResult VKAPI vkEndCommandBuffer(VkCmdBuffer cmdBuffer)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002018{
Tobin Ehlis9c536442015-06-19 13:00:59 -06002019 VkResult result = VK_ERROR_BUILDING_COMMAND_BUFFER;
2020 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2021 if (pCB) {
2022 if (pCB->state == CB_UPDATE_ACTIVE) {
2023 result = get_dispatch_table(draw_state_device_table_map, cmdBuffer)->EndCommandBuffer(cmdBuffer);
2024 if (VK_SUCCESS == result) {
2025 updateCBTracking(cmdBuffer);
2026 pCB->state = CB_UPDATE_COMPLETE;
2027 // Reset CB status flags
2028 pCB->status = 0;
2029 printCB(cmdBuffer);
2030 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002031 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002032 report_error_no_cb_begin(cmdBuffer, "vkEndCommandBuffer()");
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002033 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002034 }
2035 return result;
2036}
2037
Cody Northrope62183e2015-07-09 18:08:05 -06002038VK_LAYER_EXPORT VkResult VKAPI vkResetCommandBuffer(VkCmdBuffer cmdBuffer, VkCmdBufferResetFlags flags)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002039{
Cody Northrope62183e2015-07-09 18:08:05 -06002040 VkResult result = get_dispatch_table(draw_state_device_table_map, cmdBuffer)->ResetCommandBuffer(cmdBuffer, flags);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002041 if (VK_SUCCESS == result) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002042 resetCB(cmdBuffer);
2043 updateCBTracking(cmdBuffer);
2044 }
2045 return result;
2046}
2047
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002048VK_LAYER_EXPORT void VKAPI vkCmdBindPipeline(VkCmdBuffer cmdBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002049{
2050 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2051 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002052 if (pCB->state == CB_UPDATE_ACTIVE) {
2053 updateCBTracking(cmdBuffer);
2054 addCmd(pCB, CMD_BINDPIPELINE);
Tobin Ehlis6d58e6d2015-06-23 08:46:18 -06002055 if ((VK_PIPELINE_BIND_POINT_COMPUTE == pipelineBindPoint) && (pCB->activeRenderPass)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002056 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_PIPELINE, pipeline.handle, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
2057 "Incorrectly binding compute pipeline (%#" PRIxLEAST64 ") during active RenderPass (%#" PRIxLEAST64 ")", pipeline.handle, pCB->activeRenderPass.handle);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002058 } else if ((VK_PIPELINE_BIND_POINT_GRAPHICS == pipelineBindPoint) && (!pCB->activeRenderPass)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002059 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_PIPELINE, pipeline.handle, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
2060 "Incorrectly binding graphics pipeline (%#" PRIxLEAST64 ") without an active RenderPass", pipeline.handle);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002061 } else {
Tobin Ehlis502480b2015-06-24 15:53:07 -06002062 PIPELINE_NODE* pPN = getPipeline(pipeline);
2063 if (pPN) {
2064 pCB->lastBoundPipeline = pipeline;
2065 loader_platform_thread_lock_mutex(&globalLock);
2066 set_cb_pso_status(pCB, pPN);
2067 g_lastBoundPipeline = pPN;
2068 loader_platform_thread_unlock_mutex(&globalLock);
2069 validatePipelineState(pCB, pipelineBindPoint, pipeline);
2070 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindPipeline(cmdBuffer, pipelineBindPoint, pipeline);
2071 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002072 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_PIPELINE, pipeline.handle, 0, DRAWSTATE_INVALID_PIPELINE, "DS",
2073 "Attempt to bind Pipeline %#" PRIxLEAST64 " that doesn't exist!", (void*)pipeline.handle);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002074 }
Tobin Ehlis9c536442015-06-19 13:00:59 -06002075 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002076 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002077 report_error_no_cb_begin(cmdBuffer, "vkCmdBindPipeline()");
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002078 }
2079 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002080}
2081
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002082VK_LAYER_EXPORT void VKAPI vkCmdBindDynamicViewportState(VkCmdBuffer cmdBuffer, VkDynamicViewportState dynamicViewportState)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002083{
Tobin Ehlis9c536442015-06-19 13:00:59 -06002084 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2085 if (pCB) {
2086 if (pCB->state == CB_UPDATE_ACTIVE) {
2087 updateCBTracking(cmdBuffer);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002088 addCmd(pCB, CMD_BINDDYNAMICVIEWPORTSTATE);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002089 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002090 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
2091 "Incorrect call to vkCmdBindDynamicViewportState() without an active RenderPass.");
Tobin Ehlis502480b2015-06-24 15:53:07 -06002092 }
Tobin Ehlis9c536442015-06-19 13:00:59 -06002093 loader_platform_thread_lock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002094 pCB->status |= CBSTATUS_VIEWPORT_BOUND;
2095 if (dynamicVpStateMap.find(dynamicViewportState.handle) == dynamicVpStateMap.end()) {
Tony Barboura05dbaa2015-07-09 17:31:46 -06002096 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DYNAMIC_VIEWPORT_STATE, dynamicViewportState.handle, 0, DRAWSTATE_INVALID_DYNAMIC_STATE_OBJECT, "DS",
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002097 "Unable to find VkDynamicViewportState object %#" PRIxLEAST64 ", was it ever created?", dynamicViewportState.handle);
Tobin Ehlis9c536442015-06-19 13:00:59 -06002098 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002099 pCB->lastBoundDynamicState[VK_STATE_BIND_POINT_VIEWPORT] = dynamicViewportState.handle;
2100 g_lastBoundDynamicState[VK_STATE_BIND_POINT_VIEWPORT] = dynamicViewportState.handle;
Tobin Ehlis9c536442015-06-19 13:00:59 -06002101 }
2102 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002103 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDynamicViewportState(cmdBuffer, dynamicViewportState);
Tobin Ehlis9c536442015-06-19 13:00:59 -06002104 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002105 report_error_no_cb_begin(cmdBuffer, "vkCmdBindDynamicViewportState()");
Tobin Ehlis9c536442015-06-19 13:00:59 -06002106 }
2107 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002108}
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002109VK_LAYER_EXPORT void VKAPI vkCmdBindDynamicRasterState(VkCmdBuffer cmdBuffer, VkDynamicRasterState dynamicRasterState)
2110{
2111 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2112 if (pCB) {
2113 if (pCB->state == CB_UPDATE_ACTIVE) {
2114 updateCBTracking(cmdBuffer);
2115 addCmd(pCB, CMD_BINDDYNAMICRASTERSTATE);
2116 if (!pCB->activeRenderPass) {
2117 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
2118 "Incorrect call to vkCmdBindDynamicRasterState() without an active RenderPass.");
2119 }
2120 loader_platform_thread_lock_mutex(&globalLock);
2121 pCB->status |= CBSTATUS_RASTER_BOUND;
2122 if (dynamicRsStateMap.find(dynamicRasterState.handle) == dynamicRsStateMap.end()) {
Tony Barboura05dbaa2015-07-09 17:31:46 -06002123 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DYNAMIC_RASTER_STATE, dynamicRasterState.handle, 0, DRAWSTATE_INVALID_DYNAMIC_STATE_OBJECT, "DS",
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002124 "Unable to find VkDynamicRasterState object %#" PRIxLEAST64 ", was it ever created?", dynamicRasterState.handle);
2125 } else {
2126 pCB->lastBoundDynamicState[VK_STATE_BIND_POINT_RASTER] = dynamicRasterState.handle;
2127 g_lastBoundDynamicState[VK_STATE_BIND_POINT_RASTER] = dynamicRasterState.handle;
2128 }
2129 loader_platform_thread_unlock_mutex(&globalLock);
2130 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDynamicRasterState(cmdBuffer, dynamicRasterState);
2131 } else {
2132 report_error_no_cb_begin(cmdBuffer, "vkCmdBindDynamicRasterState()");
2133 }
2134 }
2135}
2136VK_LAYER_EXPORT void VKAPI vkCmdBindDynamicColorBlendState(VkCmdBuffer cmdBuffer, VkDynamicColorBlendState dynamicColorBlendState)
2137{
2138 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2139 if (pCB) {
2140 if (pCB->state == CB_UPDATE_ACTIVE) {
2141 updateCBTracking(cmdBuffer);
2142 addCmd(pCB, CMD_BINDDYNAMICCOLORBLENDSTATE);
2143 if (!pCB->activeRenderPass) {
2144 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
2145 "Incorrect call to vkCmdBindDynamicColorBlendState() without an active RenderPass.");
2146 }
2147 loader_platform_thread_lock_mutex(&globalLock);
2148 pCB->status |= CBSTATUS_COLOR_BLEND_BOUND;
2149 if (dynamicCbStateMap.find(dynamicColorBlendState.handle) == dynamicCbStateMap.end()) {
Tony Barboura05dbaa2015-07-09 17:31:46 -06002150 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DYNAMIC_COLOR_BLEND_STATE, dynamicColorBlendState.handle, 0, DRAWSTATE_INVALID_DYNAMIC_STATE_OBJECT, "DS",
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002151 "Unable to find VkDynamicColorBlendState object %#" PRIxLEAST64 ", was it ever created?", dynamicColorBlendState.handle);
2152 } else {
2153 pCB->lastBoundDynamicState[VK_STATE_BIND_POINT_COLOR_BLEND] = dynamicColorBlendState.handle;
2154 g_lastBoundDynamicState[VK_STATE_BIND_POINT_COLOR_BLEND] = dynamicColorBlendState.handle;
2155 }
2156 loader_platform_thread_unlock_mutex(&globalLock);
2157 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDynamicColorBlendState(cmdBuffer, dynamicColorBlendState);
2158 } else {
2159 report_error_no_cb_begin(cmdBuffer, "vkCmdBindDynamicColorBlendState()");
2160 }
2161 }
2162}
2163VK_LAYER_EXPORT void VKAPI vkCmdBindDynamicDepthStencilState(VkCmdBuffer cmdBuffer, VkDynamicDepthStencilState dynamicDepthStencilState)
2164{
2165 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2166 if (pCB) {
2167 if (pCB->state == CB_UPDATE_ACTIVE) {
2168 updateCBTracking(cmdBuffer);
2169 addCmd(pCB, CMD_BINDDYNAMICDEPTHSTENCILSTATE);
2170 if (!pCB->activeRenderPass) {
2171 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
2172 "Incorrect call to vkCmdBindDynamicDepthStencilState() without an active RenderPass.");
2173 }
2174 loader_platform_thread_lock_mutex(&globalLock);
2175 pCB->status |= CBSTATUS_DEPTH_STENCIL_BOUND;
2176 if (dynamicDsStateMap.find(dynamicDepthStencilState.handle) == dynamicDsStateMap.end()) {
Tony Barboura05dbaa2015-07-09 17:31:46 -06002177 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DYNAMIC_DEPTH_STENCIL_STATE, dynamicDepthStencilState.handle, 0, DRAWSTATE_INVALID_DYNAMIC_STATE_OBJECT, "DS",
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002178 "Unable to find VkDynamicDepthStencilState object %#" PRIxLEAST64 ", was it ever created?", dynamicDepthStencilState.handle);
2179 } else {
2180 pCB->lastBoundDynamicState[VK_STATE_BIND_POINT_DEPTH_STENCIL] = dynamicDepthStencilState.handle;
2181 g_lastBoundDynamicState[VK_STATE_BIND_POINT_DEPTH_STENCIL] = dynamicDepthStencilState.handle;
2182 }
2183 loader_platform_thread_unlock_mutex(&globalLock);
2184 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDynamicDepthStencilState(cmdBuffer, dynamicDepthStencilState);
2185 } else {
2186 report_error_no_cb_begin(cmdBuffer, "vkCmdBindDynamicDepthStencilState()");
2187 }
2188 }
2189}
Mark Lobodzinskif2093b62015-06-15 13:21:21 -06002190VK_LAYER_EXPORT void VKAPI vkCmdBindDescriptorSets(VkCmdBuffer cmdBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t setCount, const VkDescriptorSet* pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t* pDynamicOffsets)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002191{
2192 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2193 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002194 if (pCB->state == CB_UPDATE_ACTIVE) {
2195 updateCBTracking(cmdBuffer);
2196 addCmd(pCB, CMD_BINDDESCRIPTORSETS);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002197 if ((VK_PIPELINE_BIND_POINT_COMPUTE == pipelineBindPoint) && (pCB->activeRenderPass)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002198 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
2199 "Incorrectly binding compute DescriptorSets during active RenderPass (%#" PRIxLEAST64 ")", pCB->activeRenderPass.handle);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002200 } else if ((VK_PIPELINE_BIND_POINT_GRAPHICS == pipelineBindPoint) && (!pCB->activeRenderPass)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002201 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Tobin Ehlis502480b2015-06-24 15:53:07 -06002202 "Incorrectly binding graphics DescriptorSets without an active RenderPass");
2203 } else if (validateBoundPipeline(cmdBuffer)) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002204 for (uint32_t i=0; i<setCount; i++) {
Tobin Ehlis3e75b2a2015-06-24 17:27:33 -06002205 SET_NODE* pSet = getSetNode(pDescriptorSets[i]);
2206 if (pSet) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002207 loader_platform_thread_lock_mutex(&globalLock);
2208 pCB->lastBoundDescriptorSet = pDescriptorSets[i];
Tobin Ehlis429b91d2015-06-22 17:20:50 -06002209 pCB->lastBoundPipelineLayout = layout;
Tobin Ehlis9c536442015-06-19 13:00:59 -06002210 pCB->boundDescriptorSets.push_back(pDescriptorSets[i]);
2211 g_lastBoundDescriptorSet = pDescriptorSets[i];
2212 loader_platform_thread_unlock_mutex(&globalLock);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002213 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, pDescriptorSets[i].handle, 0, DRAWSTATE_NONE, "DS",
2214 "DS %#" PRIxLEAST64 " bound on pipeline %s", pDescriptorSets[i].handle, string_VkPipelineBindPoint(pipelineBindPoint));
Tobin Ehlis3e75b2a2015-06-24 17:27:33 -06002215 if (!pSet->pUpdateStructs)
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002216 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_WARN_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, pDescriptorSets[i].handle, 0, DRAWSTATE_DESCRIPTOR_SET_NOT_UPDATED, "DS",
2217 "DS %#" PRIxLEAST64 " bound but it was never updated. You may want to either update it or not bind it.", pDescriptorSets[i].handle);
Tobin Ehlis9c536442015-06-19 13:00:59 -06002218 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002219 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_DESCRIPTOR_SET, pDescriptorSets[i].handle, 0, DRAWSTATE_INVALID_SET, "DS",
2220 "Attempt to bind DS %#" PRIxLEAST64 " that doesn't exist!", pDescriptorSets[i].handle);
Tobin Ehlis9c536442015-06-19 13:00:59 -06002221 }
Tobin Ehlis0174fed2015-05-28 12:10:17 -06002222 }
Tobin Ehlis7ae7c6a2015-06-22 18:00:14 -06002223 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDescriptorSets(cmdBuffer, pipelineBindPoint, layout, firstSet, setCount, pDescriptorSets, dynamicOffsetCount, pDynamicOffsets);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002224 }
Tobin Ehlis9c536442015-06-19 13:00:59 -06002225 } else {
2226 report_error_no_cb_begin(cmdBuffer, "vkCmdBindDescriptorSets()");
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002227 }
2228 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002229}
2230
Tony Barbourd1c35722015-04-16 15:59:00 -06002231VK_LAYER_EXPORT void VKAPI vkCmdBindIndexBuffer(VkCmdBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset, VkIndexType indexType)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002232{
2233 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2234 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002235 if (pCB->state == CB_UPDATE_ACTIVE) {
2236 updateCBTracking(cmdBuffer);
2237 addCmd(pCB, CMD_BINDINDEXBUFFER);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002238 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002239 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Tobin Ehlis502480b2015-06-24 15:53:07 -06002240 "Incorrect call to vkCmdBindIndexBuffer() without an active RenderPass.");
2241 } else {
2242 // TODO : Can be more exact in tracking/validating details for Idx buffer, for now just make sure *something* was bound
2243 pCB->status |= CBSTATUS_INDEX_BUFFER_BOUND;
2244 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindIndexBuffer(cmdBuffer, buffer, offset, indexType);
2245 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002246 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002247 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2248 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002249 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002250}
2251
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -06002252VK_LAYER_EXPORT void VKAPI vkCmdBindVertexBuffers(
2253 VkCmdBuffer cmdBuffer,
2254 uint32_t startBinding,
2255 uint32_t bindingCount,
2256 const VkBuffer* pBuffers,
Tony Barbourd1c35722015-04-16 15:59:00 -06002257 const VkDeviceSize* pOffsets)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002258{
2259 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2260 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002261 if (pCB->state == CB_UPDATE_ACTIVE) {
2262 /* TODO: Need to track all the vertex buffers, not just last one */
2263 updateCBTracking(cmdBuffer);
2264 addCmd(pCB, CMD_BINDVERTEXBUFFER);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002265 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002266 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Tobin Ehlis502480b2015-06-24 15:53:07 -06002267 "Incorrect call to vkCmdBindVertexBuffers() without an active RenderPass.");
2268 } else {
2269 pCB->lastVtxBinding = startBinding + bindingCount -1;
2270 if (validateBoundPipeline(cmdBuffer)) {
2271 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindVertexBuffers(cmdBuffer, startBinding, bindingCount, pBuffers, pOffsets);
2272 }
Tobin Ehlis9c536442015-06-19 13:00:59 -06002273 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002274 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002275 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
Tobin Ehlis0174fed2015-05-28 12:10:17 -06002276 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002277 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002278}
2279
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002280VK_LAYER_EXPORT void VKAPI vkCmdDraw(VkCmdBuffer cmdBuffer, uint32_t firstVertex, uint32_t vertexCount, uint32_t firstInstance, uint32_t instanceCount)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002281{
2282 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -06002283 VkBool32 valid = VK_FALSE;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002284 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002285 if (pCB->state == CB_UPDATE_ACTIVE) {
2286 updateCBTracking(cmdBuffer);
2287 addCmd(pCB, CMD_DRAW);
2288 pCB->drawCount[DRAW]++;
Tobin Ehlis429b91d2015-06-22 17:20:50 -06002289 valid = validate_draw_state(pCB, VK_FALSE);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002290 // TODO : Need to pass cmdBuffer as srcObj here
2291 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlis9c536442015-06-19 13:00:59 -06002292 "vkCmdDraw() call #%lu, reporting DS state:", g_drawCount[DRAW]++);
2293 synchAndPrintDSConfig(cmdBuffer);
2294 if (valid) {
2295 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdDraw(cmdBuffer, firstVertex, vertexCount, firstInstance, instanceCount);
2296 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002297 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002298 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2299 }
Jon Ashburn3950e1b2015-05-20 09:00:28 -06002300 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002301}
2302
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002303VK_LAYER_EXPORT void VKAPI vkCmdDrawIndexed(VkCmdBuffer cmdBuffer, uint32_t firstIndex, uint32_t indexCount, int32_t vertexOffset, uint32_t firstInstance, uint32_t instanceCount)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002304{
2305 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -06002306 VkBool32 valid = VK_FALSE;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002307 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002308 if (pCB->state == CB_UPDATE_ACTIVE) {
2309 updateCBTracking(cmdBuffer);
2310 addCmd(pCB, CMD_DRAWINDEXED);
2311 pCB->drawCount[DRAW_INDEXED]++;
Tobin Ehlis429b91d2015-06-22 17:20:50 -06002312 valid = validate_draw_state(pCB, VK_TRUE);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002313 // TODO : Need to pass cmdBuffer as srcObj here
2314 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlis9c536442015-06-19 13:00:59 -06002315 "vkCmdDrawIndexed() call #%lu, reporting DS state:", g_drawCount[DRAW_INDEXED]++);
2316 synchAndPrintDSConfig(cmdBuffer);
2317 if (valid) {
2318 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdDrawIndexed(cmdBuffer, firstIndex, indexCount, vertexOffset, firstInstance, instanceCount);
2319 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002320 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002321 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2322 }
Jon Ashburn3950e1b2015-05-20 09:00:28 -06002323 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002324}
2325
Tony Barbourd1c35722015-04-16 15:59:00 -06002326VK_LAYER_EXPORT void VKAPI vkCmdDrawIndirect(VkCmdBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t count, uint32_t stride)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002327{
2328 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -06002329 VkBool32 valid = VK_FALSE;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002330 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002331 if (pCB->state == CB_UPDATE_ACTIVE) {
2332 updateCBTracking(cmdBuffer);
2333 addCmd(pCB, CMD_DRAWINDIRECT);
2334 pCB->drawCount[DRAW_INDIRECT]++;
Tobin Ehlis429b91d2015-06-22 17:20:50 -06002335 valid = validate_draw_state(pCB, VK_FALSE);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002336 // TODO : Need to pass cmdBuffer as srcObj here
2337 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlis9c536442015-06-19 13:00:59 -06002338 "vkCmdDrawIndirect() call #%lu, reporting DS state:", g_drawCount[DRAW_INDIRECT]++);
2339 synchAndPrintDSConfig(cmdBuffer);
2340 if (valid) {
2341 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdDrawIndirect(cmdBuffer, buffer, offset, count, stride);
2342 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002343 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002344 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2345 }
Jon Ashburn3950e1b2015-05-20 09:00:28 -06002346 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002347}
2348
Tony Barbourd1c35722015-04-16 15:59:00 -06002349VK_LAYER_EXPORT void VKAPI vkCmdDrawIndexedIndirect(VkCmdBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t count, uint32_t stride)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002350{
2351 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
Courtney Goeltzenleuchtercd2a0992015-07-09 11:44:38 -06002352 VkBool32 valid = VK_FALSE;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002353 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002354 if (pCB->state == CB_UPDATE_ACTIVE) {
2355 updateCBTracking(cmdBuffer);
2356 addCmd(pCB, CMD_DRAWINDEXEDINDIRECT);
2357 pCB->drawCount[DRAW_INDEXED_INDIRECT]++;
Tobin Ehlis429b91d2015-06-22 17:20:50 -06002358 valid = validate_draw_state(pCB, VK_TRUE);
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002359 // TODO : Need to pass cmdBuffer as srcObj here
2360 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_INFO_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_NONE, "DS",
Tobin Ehlis9c536442015-06-19 13:00:59 -06002361 "vkCmdDrawIndexedIndirect() call #%lu, reporting DS state:", g_drawCount[DRAW_INDEXED_INDIRECT]++);
2362 synchAndPrintDSConfig(cmdBuffer);
2363 if (valid) {
2364 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdDrawIndexedIndirect(cmdBuffer, buffer, offset, count, stride);
2365 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002366 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002367 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2368 }
Jon Ashburn3950e1b2015-05-20 09:00:28 -06002369 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002370}
2371
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002372VK_LAYER_EXPORT void VKAPI vkCmdDispatch(VkCmdBuffer cmdBuffer, uint32_t x, uint32_t y, uint32_t z)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002373{
2374 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2375 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002376 if (pCB->state == CB_UPDATE_ACTIVE) {
2377 updateCBTracking(cmdBuffer);
2378 addCmd(pCB, CMD_DISPATCH);
2379 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdDispatch(cmdBuffer, x, y, z);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002380 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002381 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2382 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002383 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002384}
2385
Tony Barbourd1c35722015-04-16 15:59:00 -06002386VK_LAYER_EXPORT void VKAPI vkCmdDispatchIndirect(VkCmdBuffer cmdBuffer, VkBuffer buffer, VkDeviceSize offset)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002387{
2388 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2389 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002390 if (pCB->state == CB_UPDATE_ACTIVE) {
2391 updateCBTracking(cmdBuffer);
2392 addCmd(pCB, CMD_DISPATCHINDIRECT);
2393 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdDispatchIndirect(cmdBuffer, buffer, offset);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002394 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002395 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2396 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002397 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002398}
2399
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002400VK_LAYER_EXPORT void VKAPI vkCmdCopyBuffer(VkCmdBuffer cmdBuffer, VkBuffer srcBuffer, VkBuffer destBuffer, uint32_t regionCount, const VkBufferCopy* pRegions)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002401{
2402 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2403 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002404 if (pCB->state == CB_UPDATE_ACTIVE) {
2405 updateCBTracking(cmdBuffer);
2406 addCmd(pCB, CMD_COPYBUFFER);
2407 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdCopyBuffer(cmdBuffer, srcBuffer, destBuffer, regionCount, pRegions);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002408 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002409 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2410 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002411 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002412}
2413
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002414VK_LAYER_EXPORT void VKAPI vkCmdCopyImage(VkCmdBuffer cmdBuffer,
2415 VkImage srcImage,
2416 VkImageLayout srcImageLayout,
2417 VkImage destImage,
2418 VkImageLayout destImageLayout,
2419 uint32_t regionCount, const VkImageCopy* pRegions)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002420{
2421 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2422 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002423 if (pCB->state == CB_UPDATE_ACTIVE) {
2424 updateCBTracking(cmdBuffer);
2425 addCmd(pCB, CMD_COPYIMAGE);
2426 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdCopyImage(cmdBuffer, srcImage, srcImageLayout, destImage, destImageLayout, regionCount, pRegions);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002427 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002428 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2429 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002430 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002431}
2432
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002433VK_LAYER_EXPORT void VKAPI vkCmdBlitImage(VkCmdBuffer cmdBuffer,
2434 VkImage srcImage, VkImageLayout srcImageLayout,
2435 VkImage destImage, VkImageLayout destImageLayout,
Mark Lobodzinskiee5eef12015-05-22 14:43:25 -05002436 uint32_t regionCount, const VkImageBlit* pRegions,
2437 VkTexFilter filter)
Courtney Goeltzenleuchter91f9cee2015-04-03 14:42:51 -06002438{
2439 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2440 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002441 if (pCB->state == CB_UPDATE_ACTIVE) {
2442 updateCBTracking(cmdBuffer);
2443 addCmd(pCB, CMD_BLITIMAGE);
Tobin Ehliseac83792015-06-23 10:41:13 -06002444 if (pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002445 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
2446 "Incorrectly issuing CmdBlitImage during active RenderPass (%#" PRIxLEAST64 ")", pCB->activeRenderPass.handle);
Tobin Ehliseac83792015-06-23 10:41:13 -06002447 }
Tobin Ehlis502480b2015-06-24 15:53:07 -06002448 else
2449 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBlitImage(cmdBuffer, srcImage, srcImageLayout, destImage, destImageLayout, regionCount, pRegions, filter);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002450 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002451 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2452 }
Courtney Goeltzenleuchter91f9cee2015-04-03 14:42:51 -06002453 }
Courtney Goeltzenleuchter91f9cee2015-04-03 14:42:51 -06002454}
2455
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002456VK_LAYER_EXPORT void VKAPI vkCmdCopyBufferToImage(VkCmdBuffer cmdBuffer,
2457 VkBuffer srcBuffer,
2458 VkImage destImage, VkImageLayout destImageLayout,
2459 uint32_t regionCount, const VkBufferImageCopy* pRegions)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002460{
2461 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2462 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002463 if (pCB->state == CB_UPDATE_ACTIVE) {
2464 updateCBTracking(cmdBuffer);
2465 addCmd(pCB, CMD_COPYBUFFERTOIMAGE);
2466 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdCopyBufferToImage(cmdBuffer, srcBuffer, destImage, destImageLayout, regionCount, pRegions);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002467 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002468 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2469 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002470 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002471}
2472
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002473VK_LAYER_EXPORT void VKAPI vkCmdCopyImageToBuffer(VkCmdBuffer cmdBuffer,
2474 VkImage srcImage, VkImageLayout srcImageLayout,
2475 VkBuffer destBuffer,
2476 uint32_t regionCount, const VkBufferImageCopy* pRegions)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002477{
2478 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2479 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002480 if (pCB->state == CB_UPDATE_ACTIVE) {
2481 updateCBTracking(cmdBuffer);
2482 addCmd(pCB, CMD_COPYIMAGETOBUFFER);
2483 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdCopyImageToBuffer(cmdBuffer, srcImage, srcImageLayout, destBuffer, regionCount, pRegions);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002484 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002485 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2486 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002487 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002488}
2489
Tony Barbourd1c35722015-04-16 15:59:00 -06002490VK_LAYER_EXPORT void VKAPI vkCmdUpdateBuffer(VkCmdBuffer cmdBuffer, VkBuffer destBuffer, VkDeviceSize destOffset, VkDeviceSize dataSize, const uint32_t* pData)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002491{
2492 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2493 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002494 if (pCB->state == CB_UPDATE_ACTIVE) {
2495 updateCBTracking(cmdBuffer);
2496 addCmd(pCB, CMD_UPDATEBUFFER);
2497 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdUpdateBuffer(cmdBuffer, destBuffer, destOffset, dataSize, pData);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002498 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002499 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2500 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002501 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002502}
2503
Tony Barbourd1c35722015-04-16 15:59:00 -06002504VK_LAYER_EXPORT void VKAPI vkCmdFillBuffer(VkCmdBuffer cmdBuffer, VkBuffer destBuffer, VkDeviceSize destOffset, VkDeviceSize fillSize, uint32_t data)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002505{
2506 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2507 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002508 if (pCB->state == CB_UPDATE_ACTIVE) {
2509 updateCBTracking(cmdBuffer);
2510 addCmd(pCB, CMD_FILLBUFFER);
2511 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdFillBuffer(cmdBuffer, destBuffer, destOffset, fillSize, data);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002512 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002513 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2514 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002515 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002516}
2517
Tobin Ehlis53eddda2015-07-01 16:46:13 -06002518VK_LAYER_EXPORT void VKAPI vkCmdClearColorAttachment(
2519 VkCmdBuffer cmdBuffer,
2520 uint32_t colorAttachment,
2521 VkImageLayout imageLayout,
2522 const VkClearColorValue* pColor,
2523 uint32_t rectCount,
2524 const VkRect3D* pRects)
2525{
2526 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2527 if (pCB) {
2528 if (pCB->state == CB_UPDATE_ACTIVE) {
2529 // Warn if this is issued prior to Draw Cmd
2530 if (!hasDrawCmd(pCB)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002531 // TODO : cmdBuffer should be srcObj
2532 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_WARN_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_CLEAR_CMD_BEFORE_DRAW, "DS",
Tobin Ehlis53eddda2015-07-01 16:46:13 -06002533 "vkCmdClearColorAttachment() issued on CB object 0x%" PRIxLEAST64 " prior to any Draw Cmds."
2534 " It is recommended you use RenderPass LOAD_OP_CLEAR on Color Attachments prior to any Draw.", reinterpret_cast<VkUintPtrLeast64>(cmdBuffer));
2535 }
Tobin Ehlise2473152015-06-23 11:34:28 -06002536 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002537 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Tobin Ehlise2473152015-06-23 11:34:28 -06002538 "Clear*Attachment cmd issued without an active RenderPass. vkCmdClearColorAttachment() must only be called inside of a RenderPass."
2539 " vkCmdClearColorImage() should be used outside of a RenderPass.");
2540 } else {
2541 updateCBTracking(cmdBuffer);
2542 addCmd(pCB, CMD_CLEARCOLORATTACHMENT);
2543 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdClearColorAttachment(cmdBuffer, colorAttachment, imageLayout, pColor, rectCount, pRects);
2544 }
Tobin Ehlis53eddda2015-07-01 16:46:13 -06002545 } else {
2546 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2547 }
2548 }
2549}
2550
2551VK_LAYER_EXPORT void VKAPI vkCmdClearDepthStencilAttachment(
2552 VkCmdBuffer cmdBuffer,
2553 VkImageAspectFlags imageAspectMask,
2554 VkImageLayout imageLayout,
2555 float depth,
2556 uint32_t stencil,
2557 uint32_t rectCount,
2558 const VkRect3D* pRects)
2559{
2560 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2561 if (pCB) {
2562 if (pCB->state == CB_UPDATE_ACTIVE) {
2563 // Warn if this is issued prior to Draw Cmd
2564 if (!hasDrawCmd(pCB)) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002565 // TODO : cmdBuffer should be srcObj
2566 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_WARN_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_CLEAR_CMD_BEFORE_DRAW, "DS",
Tobin Ehlis53eddda2015-07-01 16:46:13 -06002567 "vkCmdClearDepthStencilAttachment() issued on CB object 0x%" PRIxLEAST64 " prior to any Draw Cmds."
2568 " It is recommended you use RenderPass LOAD_OP_CLEAR on DS Attachment prior to any Draw.", reinterpret_cast<VkUintPtrLeast64>(cmdBuffer));
2569 }
Tobin Ehlise2473152015-06-23 11:34:28 -06002570 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002571 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Tobin Ehlise2473152015-06-23 11:34:28 -06002572 "Clear*Attachment cmd issued without an active RenderPass. vkCmdClearDepthStencilAttachment() must only be called inside of a RenderPass."
2573 " vkCmdClearDepthStencilImage() should be used outside of a RenderPass.");
2574 } else {
2575 updateCBTracking(cmdBuffer);
2576 addCmd(pCB, CMD_CLEARDEPTHSTENCILATTACHMENT);
2577 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdClearDepthStencilAttachment(cmdBuffer, imageAspectMask, imageLayout, depth, stencil, rectCount, pRects);
2578 }
Tobin Ehlis53eddda2015-07-01 16:46:13 -06002579 } else {
2580 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2581 }
2582 }
2583}
2584
Courtney Goeltzenleuchterd7a5cff2015-04-23 17:49:22 -06002585VK_LAYER_EXPORT void VKAPI vkCmdClearColorImage(
2586 VkCmdBuffer cmdBuffer,
2587 VkImage image, VkImageLayout imageLayout,
Chris Forbesf0796e12015-06-24 14:34:53 +12002588 const VkClearColorValue *pColor,
Courtney Goeltzenleuchterd7a5cff2015-04-23 17:49:22 -06002589 uint32_t rangeCount, const VkImageSubresourceRange* pRanges)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002590{
2591 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2592 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002593 if (pCB->state == CB_UPDATE_ACTIVE) {
Tobin Ehlise2473152015-06-23 11:34:28 -06002594 if (pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002595 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
Tobin Ehlise2473152015-06-23 11:34:28 -06002596 "Clear*Image cmd issued with an active RenderPass. vkCmdClearColorImage() must only be called outside of a RenderPass."
2597 " vkCmdClearColorAttachment() should be used within a RenderPass.");
2598 } else {
2599 updateCBTracking(cmdBuffer);
2600 addCmd(pCB, CMD_CLEARCOLORIMAGE);
2601 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdClearColorImage(cmdBuffer, image, imageLayout, pColor, rangeCount, pRanges);
2602 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002603 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002604 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2605 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002606 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002607}
2608
Chris Forbesd9be82b2015-06-22 17:21:59 +12002609VK_LAYER_EXPORT void VKAPI vkCmdClearDepthStencilImage(VkCmdBuffer cmdBuffer,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002610 VkImage image, VkImageLayout imageLayout,
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002611 float depth, uint32_t stencil,
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002612 uint32_t rangeCount, const VkImageSubresourceRange* pRanges)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002613{
2614 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2615 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002616 if (pCB->state == CB_UPDATE_ACTIVE) {
Tobin Ehlise2473152015-06-23 11:34:28 -06002617 if (pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002618 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
Tobin Ehlise2473152015-06-23 11:34:28 -06002619 "Clear*Image cmd issued with an active RenderPass. vkCmdClearDepthStencilImage() must only be called outside of a RenderPass."
2620 " vkCmdClearDepthStencilAttachment() should be used within a RenderPass.");
2621 } else {
2622 updateCBTracking(cmdBuffer);
2623 addCmd(pCB, CMD_CLEARDEPTHSTENCILIMAGE);
2624 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdClearDepthStencilImage(cmdBuffer, image, imageLayout, depth, stencil, rangeCount, pRanges);
2625 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002626 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002627 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2628 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002629 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002630}
2631
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002632VK_LAYER_EXPORT void VKAPI vkCmdResolveImage(VkCmdBuffer cmdBuffer,
2633 VkImage srcImage, VkImageLayout srcImageLayout,
2634 VkImage destImage, VkImageLayout destImageLayout,
Tony Barbour6865d4a2015-04-13 15:02:52 -06002635 uint32_t regionCount, const VkImageResolve* pRegions)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002636{
2637 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2638 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002639 if (pCB->state == CB_UPDATE_ACTIVE) {
Tobin Ehlis502480b2015-06-24 15:53:07 -06002640 if (pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002641 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
2642 "Cannot call vkCmdResolveImage() during an active RenderPass (%#" PRIxLEAST64 ").", pCB->activeRenderPass.handle);
Tobin Ehlise2473152015-06-23 11:34:28 -06002643 } else {
2644 updateCBTracking(cmdBuffer);
2645 addCmd(pCB, CMD_RESOLVEIMAGE);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002646 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdResolveImage(cmdBuffer, srcImage, srcImageLayout, destImage, destImageLayout, regionCount, pRegions);
Tobin Ehlise2473152015-06-23 11:34:28 -06002647 }
Tobin Ehlisce132d82015-06-19 15:07:05 -06002648 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002649 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2650 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002651 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002652}
2653
Tony Barbour0b2cfb22015-06-29 16:20:35 -06002654VK_LAYER_EXPORT void VKAPI vkCmdSetEvent(VkCmdBuffer cmdBuffer, VkEvent event, VkPipelineStageFlags stageMask)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002655{
2656 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2657 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002658 if (pCB->state == CB_UPDATE_ACTIVE) {
2659 updateCBTracking(cmdBuffer);
2660 addCmd(pCB, CMD_SETEVENT);
Tony Barbour0b2cfb22015-06-29 16:20:35 -06002661 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdSetEvent(cmdBuffer, event, stageMask);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002662 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002663 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2664 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002665 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002666}
2667
Tony Barbour0b2cfb22015-06-29 16:20:35 -06002668VK_LAYER_EXPORT void VKAPI vkCmdResetEvent(VkCmdBuffer cmdBuffer, VkEvent event, VkPipelineStageFlags stageMask)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002669{
2670 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2671 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002672 if (pCB->state == CB_UPDATE_ACTIVE) {
2673 updateCBTracking(cmdBuffer);
2674 addCmd(pCB, CMD_RESETEVENT);
Tony Barbour0b2cfb22015-06-29 16:20:35 -06002675 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdResetEvent(cmdBuffer, event, stageMask);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002676 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002677 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2678 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002679 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002680}
2681
Courtney Goeltzenleuchterdbd20322015-07-12 12:58:58 -06002682VK_LAYER_EXPORT void VKAPI vkCmdWaitEvents(VkCmdBuffer cmdBuffer, uint32_t eventCount, const VkEvent* pEvents, VkPipelineStageFlags sourceStageMask, VkPipelineStageFlags destStageMask, uint32_t memBarrierCount, const void* const* ppMemBarriers)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002683{
2684 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2685 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002686 if (pCB->state == CB_UPDATE_ACTIVE) {
2687 updateCBTracking(cmdBuffer);
2688 addCmd(pCB, CMD_WAITEVENTS);
Tony Barbour0b2cfb22015-06-29 16:20:35 -06002689 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdWaitEvents(cmdBuffer, eventCount, pEvents, sourceStageMask, destStageMask, memBarrierCount, ppMemBarriers);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002690 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002691 report_error_no_cb_begin(cmdBuffer, "vkCmdBindIndexBuffer()");
2692 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002693 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002694}
2695
Courtney Goeltzenleuchterceebbb12015-07-12 13:07:46 -06002696VK_LAYER_EXPORT void VKAPI vkCmdPipelineBarrier(VkCmdBuffer cmdBuffer, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags destStageMask, VkBool32 byRegion, uint32_t memBarrierCount, const void* const* ppMemBarriers)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002697{
2698 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2699 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002700 if (pCB->state == CB_UPDATE_ACTIVE) {
2701 updateCBTracking(cmdBuffer);
2702 addCmd(pCB, CMD_PIPELINEBARRIER);
Courtney Goeltzenleuchter53043732015-07-12 13:20:05 -06002703 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdPipelineBarrier(cmdBuffer, srcStageMask, destStageMask, byRegion, memBarrierCount, ppMemBarriers);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002704 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002705 report_error_no_cb_begin(cmdBuffer, "vkCmdPipelineBarrier()");
2706 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002707 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002708}
2709
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002710VK_LAYER_EXPORT void VKAPI vkCmdBeginQuery(VkCmdBuffer cmdBuffer, VkQueryPool queryPool, uint32_t slot, VkFlags flags)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002711{
2712 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2713 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002714 if (pCB->state == CB_UPDATE_ACTIVE) {
2715 updateCBTracking(cmdBuffer);
2716 addCmd(pCB, CMD_BEGINQUERY);
2717 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBeginQuery(cmdBuffer, queryPool, slot, flags);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002718 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002719 report_error_no_cb_begin(cmdBuffer, "vkCmdBeginQuery()");
2720 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002721 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002722}
2723
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002724VK_LAYER_EXPORT void VKAPI vkCmdEndQuery(VkCmdBuffer cmdBuffer, VkQueryPool queryPool, uint32_t slot)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002725{
2726 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2727 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002728 if (pCB->state == CB_UPDATE_ACTIVE) {
2729 updateCBTracking(cmdBuffer);
2730 addCmd(pCB, CMD_ENDQUERY);
2731 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdEndQuery(cmdBuffer, queryPool, slot);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002732 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002733 report_error_no_cb_begin(cmdBuffer, "vkCmdEndQuery()");
2734 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002735 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002736}
2737
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002738VK_LAYER_EXPORT void VKAPI vkCmdResetQueryPool(VkCmdBuffer cmdBuffer, VkQueryPool queryPool, uint32_t startQuery, uint32_t queryCount)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002739{
2740 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2741 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002742 if (pCB->state == CB_UPDATE_ACTIVE) {
2743 updateCBTracking(cmdBuffer);
2744 addCmd(pCB, CMD_RESETQUERYPOOL);
2745 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdResetQueryPool(cmdBuffer, queryPool, startQuery, queryCount);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002746 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002747 report_error_no_cb_begin(cmdBuffer, "vkCmdResetQueryPool()");
2748 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002749 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002750}
2751
Tony Barbourd1c35722015-04-16 15:59:00 -06002752VK_LAYER_EXPORT void VKAPI vkCmdWriteTimestamp(VkCmdBuffer cmdBuffer, VkTimestampType timestampType, VkBuffer destBuffer, VkDeviceSize destOffset)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002753{
2754 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2755 if (pCB) {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002756 if (pCB->state == CB_UPDATE_ACTIVE) {
2757 updateCBTracking(cmdBuffer);
2758 addCmd(pCB, CMD_WRITETIMESTAMP);
2759 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdWriteTimestamp(cmdBuffer, timestampType, destBuffer, destOffset);
Tobin Ehlisce132d82015-06-19 15:07:05 -06002760 } else {
Tobin Ehlis9c536442015-06-19 13:00:59 -06002761 report_error_no_cb_begin(cmdBuffer, "vkCmdWriteTimestamp()");
2762 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002763 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002764}
2765
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002766VK_LAYER_EXPORT VkResult VKAPI vkCreateFramebuffer(VkDevice device, const VkFramebufferCreateInfo* pCreateInfo, VkFramebuffer* pFramebuffer)
Tobin Ehliseba312c2015-04-01 08:40:34 -06002767{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06002768 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateFramebuffer(device, pCreateInfo, pFramebuffer);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002769 if (VK_SUCCESS == result) {
Tobin Ehliseba312c2015-04-01 08:40:34 -06002770 // Shadow create info and store in map
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002771 VkFramebufferCreateInfo* localFBCI = new VkFramebufferCreateInfo(*pCreateInfo);
Chia-I Wu08accc62015-07-07 11:50:03 +08002772 if (pCreateInfo->pAttachments) {
2773 localFBCI->pAttachments = new VkAttachmentBindInfo[localFBCI->attachmentCount];
2774 memcpy((void*)localFBCI->pAttachments, pCreateInfo->pAttachments, localFBCI->attachmentCount*sizeof(VkAttachmentBindInfo));
Tobin Ehliseba312c2015-04-01 08:40:34 -06002775 }
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002776 frameBufferMap[pFramebuffer->handle] = localFBCI;
Tobin Ehliseba312c2015-04-01 08:40:34 -06002777 }
2778 return result;
2779}
2780
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002781VK_LAYER_EXPORT VkResult VKAPI vkCreateRenderPass(VkDevice device, const VkRenderPassCreateInfo* pCreateInfo, VkRenderPass* pRenderPass)
Tobin Ehliseba312c2015-04-01 08:40:34 -06002782{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06002783 VkResult result = get_dispatch_table(draw_state_device_table_map, device)->CreateRenderPass(device, pCreateInfo, pRenderPass);
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002784 if (VK_SUCCESS == result) {
Tobin Ehliseba312c2015-04-01 08:40:34 -06002785 // Shadow create info and store in map
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002786 VkRenderPassCreateInfo* localRPCI = new VkRenderPassCreateInfo(*pCreateInfo);
Chia-I Wu08accc62015-07-07 11:50:03 +08002787 if (pCreateInfo->pAttachments) {
2788 localRPCI->pAttachments = new VkAttachmentDescription[localRPCI->attachmentCount];
2789 memcpy((void*)localRPCI->pAttachments, pCreateInfo->pAttachments, localRPCI->attachmentCount*sizeof(VkAttachmentDescription));
Tobin Ehliseba312c2015-04-01 08:40:34 -06002790 }
Chia-I Wu08accc62015-07-07 11:50:03 +08002791 if (pCreateInfo->pSubpasses) {
2792 localRPCI->pSubpasses = new VkSubpassDescription[localRPCI->subpassCount];
2793 memcpy((void*)localRPCI->pSubpasses, pCreateInfo->pSubpasses, localRPCI->subpassCount*sizeof(VkSubpassDescription));
2794
2795 for (uint32_t i = 0; i < localRPCI->subpassCount; i++) {
2796 VkSubpassDescription *subpass = (VkSubpassDescription *) &localRPCI->pSubpasses[i];
2797 const uint32_t attachmentCount = subpass->inputCount +
2798 subpass->colorCount * (1 + (bool) subpass->resolveAttachments) +
2799 subpass->preserveCount;
2800 VkAttachmentReference *attachments = new VkAttachmentReference[attachmentCount];
2801
2802 memcpy(attachments, subpass->inputAttachments,
2803 sizeof(attachments[0]) * subpass->inputCount);
2804 subpass->inputAttachments = attachments;
2805 attachments += subpass->inputCount;
2806
2807 memcpy(attachments, subpass->colorAttachments,
2808 sizeof(attachments[0]) * subpass->colorCount);
2809 subpass->colorAttachments = attachments;
2810 attachments += subpass->colorCount;
2811
2812 if (subpass->resolveAttachments) {
2813 memcpy(attachments, subpass->resolveAttachments,
2814 sizeof(attachments[0]) * subpass->colorCount);
2815 subpass->resolveAttachments = attachments;
2816 attachments += subpass->colorCount;
2817 }
2818
2819 memcpy(attachments, subpass->preserveAttachments,
2820 sizeof(attachments[0]) * subpass->preserveCount);
2821 subpass->preserveAttachments = attachments;
2822 }
Tobin Ehliseba312c2015-04-01 08:40:34 -06002823 }
Chia-I Wu08accc62015-07-07 11:50:03 +08002824 if (pCreateInfo->pDependencies) {
2825 localRPCI->pDependencies = new VkSubpassDependency[localRPCI->dependencyCount];
2826 memcpy((void*)localRPCI->pDependencies, pCreateInfo->pDependencies, localRPCI->dependencyCount*sizeof(VkSubpassDependency));
Tobin Ehliseba312c2015-04-01 08:40:34 -06002827 }
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002828 renderPassMap[pRenderPass->handle] = localRPCI;
Tobin Ehliseba312c2015-04-01 08:40:34 -06002829 }
2830 return result;
2831}
2832
Chia-I Wu08accc62015-07-07 11:50:03 +08002833VK_LAYER_EXPORT void VKAPI vkCmdBeginRenderPass(VkCmdBuffer cmdBuffer, const VkRenderPassBeginInfo *pRenderPassBegin, VkRenderPassContents contents)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002834{
2835 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2836 if (pCB) {
Tobin Ehlis259730a2015-06-23 16:13:03 -06002837 if (pRenderPassBegin && pRenderPassBegin->renderPass) {
Tobin Ehlis502480b2015-06-24 15:53:07 -06002838 if (pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002839 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS_CMD, "DS",
2840 "Cannot call vkCmdBeginRenderPass() during an active RenderPass (%#" PRIxLEAST64 "). You must first call vkCmdEndRenderPass().", pCB->activeRenderPass.handle);
Tobin Ehlis502480b2015-06-24 15:53:07 -06002841 } else {
2842 updateCBTracking(cmdBuffer);
2843 addCmd(pCB, CMD_BEGINRENDERPASS);
2844 pCB->activeRenderPass = pRenderPassBegin->renderPass;
Chia-I Wu08accc62015-07-07 11:50:03 +08002845 pCB->activeSubpass = 0;
Tobin Ehlis502480b2015-06-24 15:53:07 -06002846 pCB->framebuffer = pRenderPassBegin->framebuffer;
2847 if (pCB->lastBoundPipeline) {
2848 validatePipelineState(pCB, VK_PIPELINE_BIND_POINT_GRAPHICS, pCB->lastBoundPipeline);
2849 }
Chia-I Wu08accc62015-07-07 11:50:03 +08002850 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBeginRenderPass(cmdBuffer, pRenderPassBegin, contents);
Tobin Ehlis259730a2015-06-23 16:13:03 -06002851 }
Tobin Ehlis502480b2015-06-24 15:53:07 -06002852 } else {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002853 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_INVALID_RENDERPASS, "DS",
Tobin Ehlis259730a2015-06-23 16:13:03 -06002854 "You cannot use a NULL RenderPass object in vkCmdBeginRenderPass()");
Tony Barbourbadda992015-04-06 11:09:26 -06002855 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002856 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002857}
2858
Chia-I Wu08accc62015-07-07 11:50:03 +08002859VK_LAYER_EXPORT void VKAPI vkCmdNextSubpass(VkCmdBuffer cmdBuffer, VkRenderPassContents contents)
2860{
2861 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2862 if (pCB) {
2863 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002864 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Chia-I Wu08accc62015-07-07 11:50:03 +08002865 "Incorrect call to vkCmdNextSubpass() without an active RenderPass.");
2866 } else {
2867 updateCBTracking(cmdBuffer);
2868 addCmd(pCB, CMD_NEXTSUBPASS);
2869 pCB->activeSubpass++;
2870 if (pCB->lastBoundPipeline) {
2871 validatePipelineState(pCB, VK_PIPELINE_BIND_POINT_GRAPHICS, pCB->lastBoundPipeline);
2872 }
2873 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdNextSubpass(cmdBuffer, contents);
2874 }
2875 }
2876}
2877
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08002878VK_LAYER_EXPORT void VKAPI vkCmdEndRenderPass(VkCmdBuffer cmdBuffer)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002879{
2880 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2881 if (pCB) {
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08002882 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002883 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08002884 "Incorrect call to vkCmdEndRenderPass() without an active RenderPass.");
Tobin Ehlis59a9c832015-06-23 16:13:03 -06002885 } else {
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08002886 updateCBTracking(cmdBuffer);
2887 addCmd(pCB, CMD_ENDRENDERPASS);
2888 pCB->activeRenderPass = 0;
Chia-I Wu08accc62015-07-07 11:50:03 +08002889 pCB->activeSubpass = 0;
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08002890 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdEndRenderPass(cmdBuffer);
2891 }
2892 }
2893}
2894
2895VK_LAYER_EXPORT void VKAPI vkCmdExecuteCommands(VkCmdBuffer cmdBuffer, uint32_t cmdBuffersCount, const VkCmdBuffer* pCmdBuffers)
2896{
2897 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
2898 if (pCB) {
2899 if (!pCB->activeRenderPass) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002900 log_msg(mdd(pCB->cmdBuffer), VK_DBG_REPORT_ERROR_BIT, (VkDbgObjectType) 0, 0, 0, DRAWSTATE_NO_ACTIVE_RENDERPASS, "DS",
Chia-I Wu0b50a1c2015-06-26 15:34:39 +08002901 "Incorrect call to vkCmdExecuteCommands() without an active RenderPass.");
2902 } else {
2903 updateCBTracking(cmdBuffer);
2904 addCmd(pCB, CMD_EXECUTECOMMANDS);
2905 get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdExecuteCommands(cmdBuffer, cmdBuffersCount, pCmdBuffers);
Tobin Ehlis259730a2015-06-23 16:13:03 -06002906 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002907 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002908}
2909
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -06002910VK_LAYER_EXPORT VkResult VKAPI vkDbgCreateMsgCallback(
2911 VkInstance instance,
2912 VkFlags msgFlags,
2913 const PFN_vkDbgMsgCallback pfnMsgCallback,
2914 void* pUserData,
2915 VkDbgMsgCallback* pMsgCallback)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002916{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06002917 VkLayerInstanceDispatchTable *pTable = get_dispatch_table(draw_state_instance_table_map, instance);
Tobin Ehlisc16c3e92015-06-16 09:04:30 -06002918 VkResult res = pTable->DbgCreateMsgCallback(instance, msgFlags, pfnMsgCallback, pUserData, pMsgCallback);
2919 if (VK_SUCCESS == res) {
2920 layer_data *my_data = get_my_data_ptr(get_dispatch_key(instance), layer_data_map);
2921 res = layer_create_msg_callback(my_data->report_data, msgFlags, pfnMsgCallback, pUserData, pMsgCallback);
2922 }
2923 return res;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002924}
2925
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -06002926VK_LAYER_EXPORT VkResult VKAPI vkDbgDestroyMsgCallback(
2927 VkInstance instance,
2928 VkDbgMsgCallback msgCallback)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002929{
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06002930 VkLayerInstanceDispatchTable *pTable = get_dispatch_table(draw_state_instance_table_map, instance);
Tobin Ehlisc16c3e92015-06-16 09:04:30 -06002931 VkResult res = pTable->DbgDestroyMsgCallback(instance, msgCallback);
2932 layer_data *my_data = get_my_data_ptr(get_dispatch_key(instance), layer_data_map);
2933 layer_destroy_msg_callback(my_data->report_data, msgCallback);
2934 return res;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002935}
2936
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002937VK_LAYER_EXPORT void VKAPI vkCmdDbgMarkerBegin(VkCmdBuffer cmdBuffer, const char* pMarker)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002938{
2939 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
Jon Ashburneab34492015-06-01 09:37:38 -06002940 VkLayerDispatchTable *pDisp = *(VkLayerDispatchTable **) cmdBuffer;
2941 if (!deviceExtMap[pDisp].debug_marker_enabled) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002942 // TODO : cmdBuffer should be srcObj
2943 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_INVALID_EXTENSION, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06002944 "Attempt to use CmdDbgMarkerBegin but extension disabled!");
Jon Ashburneab34492015-06-01 09:37:38 -06002945 return;
Tobin Ehlisce132d82015-06-19 15:07:05 -06002946 } else if (pCB) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002947 updateCBTracking(cmdBuffer);
2948 addCmd(pCB, CMD_DBGMARKERBEGIN);
2949 }
Jon Ashburneab34492015-06-01 09:37:38 -06002950 debug_marker_dispatch_table(cmdBuffer)->CmdDbgMarkerBegin(cmdBuffer, pMarker);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002951}
2952
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -06002953VK_LAYER_EXPORT void VKAPI vkCmdDbgMarkerEnd(VkCmdBuffer cmdBuffer)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002954{
2955 GLOBAL_CB_NODE* pCB = getCBNode(cmdBuffer);
Jon Ashburneab34492015-06-01 09:37:38 -06002956 VkLayerDispatchTable *pDisp = *(VkLayerDispatchTable **) cmdBuffer;
2957 if (!deviceExtMap[pDisp].debug_marker_enabled) {
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002958 // TODO : cmdBuffer should be srcObj
2959 log_msg(mdd(cmdBuffer), VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_COMMAND_BUFFER, 0, 0, DRAWSTATE_INVALID_EXTENSION, "DS",
Tobin Ehlisa16e8922015-06-16 15:50:44 -06002960 "Attempt to use CmdDbgMarkerEnd but extension disabled!");
Jon Ashburneab34492015-06-01 09:37:38 -06002961 return;
Tobin Ehlisce132d82015-06-19 15:07:05 -06002962 } else if (pCB) {
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002963 updateCBTracking(cmdBuffer);
2964 addCmd(pCB, CMD_DBGMARKEREND);
2965 }
Jon Ashburneab34492015-06-01 09:37:38 -06002966 debug_marker_dispatch_table(cmdBuffer)->CmdDbgMarkerEnd(cmdBuffer);
2967}
2968
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06002969//VK_LAYER_EXPORT VkResult VKAPI vkDbgSetObjectTag(VkDevice device, VkObjectType objType, VkObject object, size_t tagSize, const void* pTag)
2970//{
2971// VkLayerDispatchTable *pDisp = *(VkLayerDispatchTable **) device;
2972// if (!deviceExtMap[pDisp].debug_marker_enabled) {
2973// log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, objType, object, 0, DRAWSTATE_INVALID_EXTENSION, "DS",
2974// "Attempt to use DbgSetObjectTag but extension disabled!");
2975// return VK_ERROR_UNAVAILABLE;
2976// }
2977// debug_marker_dispatch_table(device)->DbgSetObjectTag(device, objType, object, tagSize, pTag);
2978//}
2979//
2980//VK_LAYER_EXPORT VkResult VKAPI vkDbgSetObjectName(VkDevice device, VkObjectType objType, VkObject object, size_t nameSize, const char* pName)
2981//{
2982// VkLayerDispatchTable *pDisp = *(VkLayerDispatchTable **) device;
2983// if (!deviceExtMap[pDisp].debug_marker_enabled) {
2984// log_msg(mdd(device), VK_DBG_REPORT_ERROR_BIT, objType, object, 0, DRAWSTATE_INVALID_EXTENSION, "DS",
2985// "Attempt to use DbgSetObjectName but extension disabled!");
2986// return VK_ERROR_UNAVAILABLE;
2987// }
2988// debug_marker_dispatch_table(device)->DbgSetObjectName(device, objType, object, nameSize, pName);
2989//}
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002990
Jon Ashburn8d1b0b52015-05-18 13:20:15 -06002991VK_LAYER_EXPORT void* VKAPI vkGetDeviceProcAddr(VkDevice dev, const char* funcName)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002992{
Jon Ashburn8d1b0b52015-05-18 13:20:15 -06002993 if (dev == NULL)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06002994 return NULL;
Jon Ashburn3950e1b2015-05-20 09:00:28 -06002995
Jon Ashburn8fd08252015-05-28 16:25:02 -06002996 /* loader uses this to force layer initialization; device object is wrapped */
2997 if (!strcmp(funcName, "vkGetDeviceProcAddr")) {
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06002998 initDeviceTable(draw_state_device_table_map, (const VkBaseLayerObject *) dev);
Jon Ashburn8d1b0b52015-05-18 13:20:15 -06002999 return (void *) vkGetDeviceProcAddr;
Jon Ashburn8fd08252015-05-28 16:25:02 -06003000 }
Courtney Goeltzenleuchterca173b82015-06-25 18:01:43 -06003001 if (!strcmp(funcName, "vkCreateDevice"))
3002 return (void*) vkCreateDevice;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003003 if (!strcmp(funcName, "vkDestroyDevice"))
3004 return (void*) vkDestroyDevice;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003005 if (!strcmp(funcName, "vkQueueSubmit"))
3006 return (void*) vkQueueSubmit;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06003007 if (!strcmp(funcName, "vkDestroyInstance"))
3008 return (void*) vkDestroyInstance;
3009 if (!strcmp(funcName, "vkDestroyDevice"))
3010 return (void*) vkDestroyDevice;
3011 if (!strcmp(funcName, "vkDestroyFence"))
3012 return (void*) vkDestroyFence;
3013 if (!strcmp(funcName, "vkDestroySemaphore"))
3014 return (void*) vkDestroySemaphore;
3015 if (!strcmp(funcName, "vkDestroyEvent"))
3016 return (void*) vkDestroyEvent;
3017 if (!strcmp(funcName, "vkDestroyQueryPool"))
3018 return (void*) vkDestroyQueryPool;
3019 if (!strcmp(funcName, "vkDestroyBuffer"))
3020 return (void*) vkDestroyBuffer;
3021 if (!strcmp(funcName, "vkDestroyBufferView"))
3022 return (void*) vkDestroyBufferView;
3023 if (!strcmp(funcName, "vkDestroyImage"))
3024 return (void*) vkDestroyImage;
3025 if (!strcmp(funcName, "vkDestroyImageView"))
3026 return (void*) vkDestroyImageView;
3027 if (!strcmp(funcName, "vkDestroyAttachmentView"))
3028 return (void*) vkDestroyAttachmentView;
3029 if (!strcmp(funcName, "vkDestroyShaderModule"))
3030 return (void*) vkDestroyShaderModule;
3031 if (!strcmp(funcName, "vkDestroyShader"))
3032 return (void*) vkDestroyShader;
3033 if (!strcmp(funcName, "vkDestroyPipeline"))
3034 return (void*) vkDestroyPipeline;
3035 if (!strcmp(funcName, "vkDestroyPipelineLayout"))
3036 return (void*) vkDestroyPipelineLayout;
3037 if (!strcmp(funcName, "vkDestroySampler"))
3038 return (void*) vkDestroySampler;
3039 if (!strcmp(funcName, "vkDestroyDescriptorSetLayout"))
3040 return (void*) vkDestroyDescriptorSetLayout;
3041 if (!strcmp(funcName, "vkDestroyDescriptorPool"))
3042 return (void*) vkDestroyDescriptorPool;
3043 if (!strcmp(funcName, "vkDestroyDynamicViewportState"))
3044 return (void*) vkDestroyDynamicViewportState;
3045 if (!strcmp(funcName, "vkDestroyDynamicRasterState"))
3046 return (void*) vkDestroyDynamicRasterState;
3047 if (!strcmp(funcName, "vkDestroyDynamicColorBlendState"))
3048 return (void*) vkDestroyDynamicColorBlendState;
3049 if (!strcmp(funcName, "vkDestroyDynamicDepthStencilState"))
3050 return (void*) vkDestroyDynamicDepthStencilState;
3051 if (!strcmp(funcName, "vkDestroyCommandBuffer"))
3052 return (void*) vkDestroyCommandBuffer;
3053 if (!strcmp(funcName, "vkDestroyFramebuffer"))
3054 return (void*) vkDestroyFramebuffer;
3055 if (!strcmp(funcName, "vkDestroyRenderPass"))
3056 return (void*) vkDestroyRenderPass;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003057 if (!strcmp(funcName, "vkCreateBufferView"))
3058 return (void*) vkCreateBufferView;
3059 if (!strcmp(funcName, "vkCreateImageView"))
3060 return (void*) vkCreateImageView;
Tobin Ehlisffe35812015-07-10 12:15:19 -06003061 if (!strcmp(funcName, "vkCreateAttachmentView"))
3062 return (void*) vkCreateAttachmentView;
Jon Ashburnc669cc62015-07-09 15:02:25 -06003063 if (!strcmp(funcName, "CreatePipelineCache"))
3064 return (void*) vkCreatePipelineCache;
3065 if (!strcmp(funcName, "DestroyPipelineCache"))
3066 return (void*) vkDestroyPipelineCache;
3067 if (!strcmp(funcName, "GetPipelineCacheSize"))
3068 return (void*) vkGetPipelineCacheSize;
3069 if (!strcmp(funcName, "GetPipelineCacheData"))
3070 return (void*) vkGetPipelineCacheData;
3071 if (!strcmp(funcName, "MergePipelineCaches"))
3072 return (void*) vkMergePipelineCaches;
3073 if (!strcmp(funcName, "vkCreateGraphicsPipelines"))
3074 return (void*) vkCreateGraphicsPipelines;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003075 if (!strcmp(funcName, "vkCreateSampler"))
3076 return (void*) vkCreateSampler;
3077 if (!strcmp(funcName, "vkCreateDescriptorSetLayout"))
3078 return (void*) vkCreateDescriptorSetLayout;
Mark Lobodzinski0fadf5f2015-04-17 14:11:39 -05003079 if (!strcmp(funcName, "vkCreatePipelineLayout"))
3080 return (void*) vkCreatePipelineLayout;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003081 if (!strcmp(funcName, "vkCreateDescriptorPool"))
3082 return (void*) vkCreateDescriptorPool;
3083 if (!strcmp(funcName, "vkResetDescriptorPool"))
3084 return (void*) vkResetDescriptorPool;
3085 if (!strcmp(funcName, "vkAllocDescriptorSets"))
3086 return (void*) vkAllocDescriptorSets;
Chia-I Wu9d00ed72015-05-25 16:27:55 +08003087 if (!strcmp(funcName, "vkUpdateDescriptorSets"))
3088 return (void*) vkUpdateDescriptorSets;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003089 if (!strcmp(funcName, "vkCreateDynamicViewportState"))
3090 return (void*) vkCreateDynamicViewportState;
3091 if (!strcmp(funcName, "vkCreateDynamicRasterState"))
3092 return (void*) vkCreateDynamicRasterState;
3093 if (!strcmp(funcName, "vkCreateDynamicColorBlendState"))
3094 return (void*) vkCreateDynamicColorBlendState;
3095 if (!strcmp(funcName, "vkCreateDynamicDepthStencilState"))
3096 return (void*) vkCreateDynamicDepthStencilState;
3097 if (!strcmp(funcName, "vkCreateCommandBuffer"))
3098 return (void*) vkCreateCommandBuffer;
3099 if (!strcmp(funcName, "vkBeginCommandBuffer"))
3100 return (void*) vkBeginCommandBuffer;
3101 if (!strcmp(funcName, "vkEndCommandBuffer"))
3102 return (void*) vkEndCommandBuffer;
3103 if (!strcmp(funcName, "vkResetCommandBuffer"))
3104 return (void*) vkResetCommandBuffer;
3105 if (!strcmp(funcName, "vkCmdBindPipeline"))
3106 return (void*) vkCmdBindPipeline;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06003107 if (!strcmp(funcName, "vkCmdBindDynamicViewportState"))
3108 return (void*) vkCmdBindDynamicViewportState;
3109 if (!strcmp(funcName, "vkCmdBindDynamicRasterState"))
3110 return (void*) vkCmdBindDynamicRasterState;
3111 if (!strcmp(funcName, "vkCmdBindDynamicColorBlendState"))
3112 return (void*) vkCmdBindDynamicColorBlendState;
3113 if (!strcmp(funcName, "vkCmdBindDynamicDepthStencilState"))
3114 return (void*) vkCmdBindDynamicDepthStencilState;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003115 if (!strcmp(funcName, "vkCmdBindDescriptorSets"))
3116 return (void*) vkCmdBindDescriptorSets;
Courtney Goeltzenleuchterf68ad722015-04-16 13:38:46 -06003117 if (!strcmp(funcName, "vkCmdBindVertexBuffers"))
3118 return (void*) vkCmdBindVertexBuffers;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003119 if (!strcmp(funcName, "vkCmdBindIndexBuffer"))
3120 return (void*) vkCmdBindIndexBuffer;
3121 if (!strcmp(funcName, "vkCmdDraw"))
3122 return (void*) vkCmdDraw;
3123 if (!strcmp(funcName, "vkCmdDrawIndexed"))
3124 return (void*) vkCmdDrawIndexed;
3125 if (!strcmp(funcName, "vkCmdDrawIndirect"))
3126 return (void*) vkCmdDrawIndirect;
3127 if (!strcmp(funcName, "vkCmdDrawIndexedIndirect"))
3128 return (void*) vkCmdDrawIndexedIndirect;
3129 if (!strcmp(funcName, "vkCmdDispatch"))
3130 return (void*) vkCmdDispatch;
3131 if (!strcmp(funcName, "vkCmdDispatchIndirect"))
3132 return (void*) vkCmdDispatchIndirect;
3133 if (!strcmp(funcName, "vkCmdCopyBuffer"))
3134 return (void*) vkCmdCopyBuffer;
3135 if (!strcmp(funcName, "vkCmdCopyImage"))
3136 return (void*) vkCmdCopyImage;
3137 if (!strcmp(funcName, "vkCmdCopyBufferToImage"))
3138 return (void*) vkCmdCopyBufferToImage;
3139 if (!strcmp(funcName, "vkCmdCopyImageToBuffer"))
3140 return (void*) vkCmdCopyImageToBuffer;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003141 if (!strcmp(funcName, "vkCmdUpdateBuffer"))
3142 return (void*) vkCmdUpdateBuffer;
3143 if (!strcmp(funcName, "vkCmdFillBuffer"))
3144 return (void*) vkCmdFillBuffer;
3145 if (!strcmp(funcName, "vkCmdClearColorImage"))
3146 return (void*) vkCmdClearColorImage;
Chris Forbesd9be82b2015-06-22 17:21:59 +12003147 if (!strcmp(funcName, "vkCmdClearDepthStencilImage"))
3148 return (void*) vkCmdClearDepthStencilImage;
Tobin Ehlis53eddda2015-07-01 16:46:13 -06003149 if (!strcmp(funcName, "vkCmdClearColorAttachment"))
3150 return (void*) vkCmdClearColorAttachment;
3151 if (!strcmp(funcName, "vkCmdClearDepthStencilAttachment"))
3152 return (void*) vkCmdClearDepthStencilAttachment;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003153 if (!strcmp(funcName, "vkCmdResolveImage"))
3154 return (void*) vkCmdResolveImage;
3155 if (!strcmp(funcName, "vkCmdSetEvent"))
3156 return (void*) vkCmdSetEvent;
3157 if (!strcmp(funcName, "vkCmdResetEvent"))
3158 return (void*) vkCmdResetEvent;
3159 if (!strcmp(funcName, "vkCmdWaitEvents"))
3160 return (void*) vkCmdWaitEvents;
3161 if (!strcmp(funcName, "vkCmdPipelineBarrier"))
3162 return (void*) vkCmdPipelineBarrier;
3163 if (!strcmp(funcName, "vkCmdBeginQuery"))
3164 return (void*) vkCmdBeginQuery;
3165 if (!strcmp(funcName, "vkCmdEndQuery"))
3166 return (void*) vkCmdEndQuery;
3167 if (!strcmp(funcName, "vkCmdResetQueryPool"))
3168 return (void*) vkCmdResetQueryPool;
3169 if (!strcmp(funcName, "vkCmdWriteTimestamp"))
3170 return (void*) vkCmdWriteTimestamp;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003171 if (!strcmp(funcName, "vkCreateFramebuffer"))
3172 return (void*) vkCreateFramebuffer;
3173 if (!strcmp(funcName, "vkCreateRenderPass"))
3174 return (void*) vkCreateRenderPass;
3175 if (!strcmp(funcName, "vkCmdBeginRenderPass"))
3176 return (void*) vkCmdBeginRenderPass;
Chia-I Wu08accc62015-07-07 11:50:03 +08003177 if (!strcmp(funcName, "vkCmdNextSubpass"))
3178 return (void*) vkCmdNextSubpass;
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06003179 if (!strcmp(funcName, "vkCmdEndRenderPass"))
3180 return (void*) vkCmdEndRenderPass;
Jon Ashburneab34492015-06-01 09:37:38 -06003181
Jon Ashburn747f2b62015-06-18 15:02:58 -06003182 VkLayerDispatchTable* pTable = get_dispatch_table(draw_state_device_table_map, dev);
3183 if (deviceExtMap.size() == 0 || deviceExtMap[pTable].debug_marker_enabled)
Jon Ashburn8fd08252015-05-28 16:25:02 -06003184 {
Jon Ashburn747f2b62015-06-18 15:02:58 -06003185 if (!strcmp(funcName, "vkCmdDbgMarkerBegin"))
Jon Ashburneab34492015-06-01 09:37:38 -06003186 return (void*) vkCmdDbgMarkerBegin;
Jon Ashburn747f2b62015-06-18 15:02:58 -06003187 if (!strcmp(funcName, "vkCmdDbgMarkerEnd"))
Jon Ashburneab34492015-06-01 09:37:38 -06003188 return (void*) vkCmdDbgMarkerEnd;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -06003189// if (!strcmp(funcName, "vkDbgSetObjectTag"))
3190// return (void*) vkDbgSetObjectTag;
3191// if (!strcmp(funcName, "vkDbgSetObjectName"))
3192// return (void*) vkDbgSetObjectName;
Jon Ashburneab34492015-06-01 09:37:38 -06003193 }
3194 {
Jon Ashburn8fd08252015-05-28 16:25:02 -06003195 if (pTable->GetDeviceProcAddr == NULL)
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06003196 return NULL;
Jon Ashburn8fd08252015-05-28 16:25:02 -06003197 return pTable->GetDeviceProcAddr(dev, funcName);
Jon Ashburnf6b33db2015-05-05 14:22:52 -06003198 }
3199}
3200
3201VK_LAYER_EXPORT void * VKAPI vkGetInstanceProcAddr(VkInstance instance, const char* funcName)
3202{
Courtney Goeltzenleuchteree562872015-06-01 14:33:14 -06003203 void *fptr;
Jon Ashburnf6b33db2015-05-05 14:22:52 -06003204 if (instance == NULL)
3205 return NULL;
3206
Jon Ashburn8fd08252015-05-28 16:25:02 -06003207 /* loader uses this to force layer initialization; instance object is wrapped */
3208 if (!strcmp(funcName, "vkGetInstanceProcAddr")) {
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06003209 initInstanceTable(draw_state_instance_table_map, (const VkBaseLayerObject *) instance);
Jon Ashburnf6b33db2015-05-05 14:22:52 -06003210 return (void *) vkGetInstanceProcAddr;
Jon Ashburn8fd08252015-05-28 16:25:02 -06003211 }
Courtney Goeltzenleuchterabc035e2015-06-01 14:29:58 -06003212 if (!strcmp(funcName, "vkCreateInstance"))
3213 return (void *) vkCreateInstance;
Jon Ashburn3950e1b2015-05-20 09:00:28 -06003214 if (!strcmp(funcName, "vkDestroyInstance"))
3215 return (void *) vkDestroyInstance;
Courtney Goeltzenleuchter7ad58c02015-07-06 22:31:52 -06003216 if (!strcmp(funcName, "vkGetGlobalLayerProperties"))
3217 return (void*) vkGetGlobalLayerProperties;
3218 if (!strcmp(funcName, "vkGetGlobalExtensionProperties"))
3219 return (void*) vkGetGlobalExtensionProperties;
3220 if (!strcmp(funcName, "vkGetPhysicalDeviceLayerProperties"))
3221 return (void*) vkGetPhysicalDeviceLayerProperties;
Tony Barbour59a47322015-06-24 16:06:58 -06003222 if (!strcmp(funcName, "vkGetPhysicalDeviceExtensionProperties"))
3223 return (void*) vkGetPhysicalDeviceExtensionProperties;
Courtney Goeltzenleuchteree562872015-06-01 14:33:14 -06003224
Tobin Ehlisa16e8922015-06-16 15:50:44 -06003225 layer_data *my_data = get_my_data_ptr(get_dispatch_key(instance), layer_data_map);
3226 fptr = debug_report_get_instance_proc_addr(my_data->report_data, funcName);
Courtney Goeltzenleuchteree562872015-06-01 14:33:14 -06003227 if (fptr)
3228 return fptr;
3229
Jon Ashburn8fd08252015-05-28 16:25:02 -06003230 {
Courtney Goeltzenleuchter3d0dfad2015-06-13 21:23:09 -06003231 VkLayerInstanceDispatchTable* pTable = get_dispatch_table(draw_state_instance_table_map, instance);
Jon Ashburn8fd08252015-05-28 16:25:02 -06003232 if (pTable->GetInstanceProcAddr == NULL)
Jon Ashburnf6b33db2015-05-05 14:22:52 -06003233 return NULL;
Jon Ashburn8fd08252015-05-28 16:25:02 -06003234 return pTable->GetInstanceProcAddr(instance, funcName);
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06003235 }
Tobin Ehlis10ae8c12015-03-17 16:24:32 -06003236}