1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
|
/* Copyright (c) 2015-2022 The Khronos Group Inc.
* Copyright (c) 2015-2022 Valve Corporation
* Copyright (c) 2015-2022 LunarG, Inc.
* Copyright (C) 2015-2022 Google Inc.
* Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved.
* Modifications Copyright (C) 2022 RasterGrid Kft.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Courtney Goeltzenleuchter <courtneygo@google.com>
* Author: Tobin Ehlis <tobine@google.com>
* Author: Chris Forbes <chrisf@ijw.co.nz>
* Author: Mark Lobodzinski <mark@lunarg.com>
* Author: Dave Houlton <daveh@lunarg.com>
* Author: John Zulauf <jzulauf@lunarg.com>
* Author: Tobias Hector <tobias.hector@amd.com>
* Author: Daniel Rakos <daniel.rakos@rastergrid.com>
*/
#pragma once
#include "base_node.h"
#include "query_state.h"
#include "video_session_state.h"
#include "command_validation.h"
#include "hash_vk_types.h"
#include "subresource_adapter.h"
#include "image_layout_map.h"
#include "pipeline_state.h"
#include "device_state.h"
#include "descriptor_sets.h"
#include "qfo_transfer.h"
#include "vk_layer_data.h"
struct SUBPASS_INFO;
class FRAMEBUFFER_STATE;
class RENDER_PASS_STATE;
class VIDEO_SESSION_STATE;
class VIDEO_SESSION_PARAMETERS_STATE;
class CoreChecks;
class ValidationStateTracker;
#ifdef VK_USE_PLATFORM_METAL_EXT
static bool GetMetalExport(const VkEventCreateInfo *info) {
bool retval = false;
auto export_metal_object_info = LvlFindInChain<VkExportMetalObjectCreateInfoEXT>(info->pNext);
while (export_metal_object_info) {
if (export_metal_object_info->exportObjectType == VK_EXPORT_METAL_OBJECT_TYPE_METAL_SHARED_EVENT_BIT_EXT) {
retval = true;
break;
}
export_metal_object_info = LvlFindInChain<VkExportMetalObjectCreateInfoEXT>(export_metal_object_info->pNext);
}
return retval;
}
#endif // VK_USE_PLATFORM_METAL_EXT
class EVENT_STATE : public BASE_NODE {
public:
int write_in_use;
#ifdef VK_USE_PLATFORM_METAL_EXT
const bool metal_event_export;
#endif // VK_USE_PLATFORM_METAL_EXT
VkPipelineStageFlags2KHR stageMask = VkPipelineStageFlags2KHR(0);
VkEventCreateFlags flags;
EVENT_STATE(VkEvent event_, const VkEventCreateInfo *pCreateInfo)
: BASE_NODE(event_, kVulkanObjectTypeEvent),
write_in_use(0),
#ifdef VK_USE_PLATFORM_METAL_EXT
metal_event_export(GetMetalExport(pCreateInfo)),
#endif // VK_USE_PLATFORM_METAL_EXT
flags(pCreateInfo->flags) {
}
VkEvent event() const { return handle_.Cast<VkEvent>(); }
};
// Only CoreChecks uses this, but the state tracker stores it.
constexpr static auto kInvalidLayout = image_layout_map::kInvalidLayout;
using ImageSubresourceLayoutMap = image_layout_map::ImageSubresourceLayoutMap;
typedef layer_data::unordered_map<VkEvent, VkPipelineStageFlags2KHR> EventToStageMap;
// Track command pools and their command buffers
class COMMAND_POOL_STATE : public BASE_NODE {
public:
ValidationStateTracker *dev_data;
const VkCommandPoolCreateFlags createFlags;
const uint32_t queueFamilyIndex;
const VkQueueFlags queue_flags;
const bool unprotected; // can't be used for protected memory
// Cmd buffers allocated from this pool
layer_data::unordered_map<VkCommandBuffer, CMD_BUFFER_STATE *> commandBuffers;
COMMAND_POOL_STATE(ValidationStateTracker *dev, VkCommandPool cp, const VkCommandPoolCreateInfo *pCreateInfo,
VkQueueFlags flags);
virtual ~COMMAND_POOL_STATE() { Destroy(); }
VkCommandPool commandPool() const { return handle_.Cast<VkCommandPool>(); }
void Allocate(const VkCommandBufferAllocateInfo *create_info, const VkCommandBuffer *command_buffers);
void Free(uint32_t count, const VkCommandBuffer *command_buffers);
void Reset();
void Destroy() override;
};
// Autogenerated as part of the command_validation.h codegen
const char *CommandTypeString(CMD_TYPE type);
enum CB_STATE {
CB_NEW, // Newly created CB w/o any cmds
CB_RECORDING, // BeginCB has been called on this CB
CB_RECORDED, // EndCB has been called on this CB
CB_INVALID_COMPLETE, // had a complete recording, but was since invalidated
CB_INVALID_INCOMPLETE, // fouled before recording was completed
};
struct BufferBinding {
std::shared_ptr<BUFFER_STATE> buffer_state;
VkDeviceSize size;
VkDeviceSize offset;
VkDeviceSize stride;
BufferBinding() : buffer_state(), size(0), offset(0), stride(0) {}
virtual ~BufferBinding() {}
virtual void reset() { *this = BufferBinding(); }
bool bound() const { return buffer_state && !buffer_state->Destroyed(); }
};
struct IndexBufferBinding : BufferBinding {
VkIndexType index_type;
IndexBufferBinding() : BufferBinding(), index_type(static_cast<VkIndexType>(0)) {}
virtual ~IndexBufferBinding() {}
virtual void reset() override { *this = IndexBufferBinding(); }
};
struct CBVertexBufferBindingInfo {
std::vector<BufferBinding> vertex_buffer_bindings;
};
typedef layer_data::unordered_map<const IMAGE_STATE *, std::shared_ptr<ImageSubresourceLayoutMap>> CommandBufferImageLayoutMap;
typedef layer_data::unordered_map<const GlobalImageLayoutRangeMap *, std::shared_ptr<ImageSubresourceLayoutMap>>
CommandBufferAliasedLayoutMap;
class CMD_BUFFER_STATE : public REFCOUNTED_NODE {
public:
VkCommandBufferAllocateInfo createInfo = {};
VkCommandBufferBeginInfo beginInfo;
VkCommandBufferInheritanceInfo inheritanceInfo;
// since command buffers can only be destroyed by their command pool, this does not need to be a shared_ptr
const COMMAND_POOL_STATE *command_pool;
ValidationStateTracker *dev_data;
bool unprotected; // can't be used for protected memory
bool hasRenderPassInstance;
bool suspendsRenderPassInstance;
bool resumesRenderPassInstance;
// Track if certain commands have been called at least once in lifetime of the command buffer
// primary command buffers values are set true if a secondary command buffer has a command
bool has_draw_cmd;
bool has_dispatch_cmd;
bool has_trace_rays_cmd;
bool has_build_as_cmd;
CB_STATE state; // Track cmd buffer update state
uint64_t commandCount; // Number of commands recorded. Currently only used with VK_KHR_performance_query
uint64_t submitCount; // Number of times CB has been submitted
bool pipeline_bound = false; // True if CmdBindPipeline has been called on this command buffer, false otherwise
typedef uint64_t ImageLayoutUpdateCount;
ImageLayoutUpdateCount image_layout_change_count; // The sequence number for changes to image layout (for cached validation)
// Dynamic State
CBDynamicFlags status; // Track status of various bindings on cmd buffer
CBDynamicFlags static_status; // All state bits provided by current graphics pipeline
// rather than dynamic state
CBDynamicFlags dynamic_status; // dynamic state set up in pipeline
struct DynamicStateValue {
// VK_DYNAMIC_STATE_STENCIL_WRITE_MASK
uint32_t write_mask_front;
uint32_t write_mask_back;
// VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE
bool depth_write_enable;
// VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE
bool depth_test_enable;
// VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE
bool stencil_test_enable;
// VK_DYNAMIC_STATE_STENCIL_OP
VkStencilOp fail_op_front;
VkStencilOp pass_op_front;
VkStencilOp depth_fail_op_front;
VkStencilOp fail_op_back;
VkStencilOp pass_op_back;
VkStencilOp depth_fail_op_back;
// VK_DYNAMIC_STATE_DISCARD_RECTANGLE_EXT
// maxDiscardRectangles is at max 8 on all known implementations currently
std::bitset<32> discard_rectangles;
} dynamic_state_value;
std::string begin_rendering_func_name;
// Currently storing "lastBound" objects on per-CB basis
// long-term may want to create caches of "lastBound" states and could have
// each individual CMD_NODE referencing its own "lastBound" state
// Store last bound state for Gfx & Compute pipeline bind points
std::array<LAST_BOUND_STATE, BindPoint_Count> lastBound; // index is LvlBindPoint.
// Use the casting boilerplate from BASE_NODE to implement the derived shared_from_this
std::shared_ptr<const CMD_BUFFER_STATE> shared_from_this() const { return SharedFromThisImpl(this); }
std::shared_ptr<CMD_BUFFER_STATE> shared_from_this() { return SharedFromThisImpl(this); }
using DescriptorBindingInfo = std::pair<const uint32_t, DescriptorRequirement>;
struct CmdDrawDispatchInfo {
CMD_TYPE cmd_type;
std::vector<DescriptorBindingInfo> binding_infos;
VkFramebuffer framebuffer;
std::shared_ptr<std::vector<SUBPASS_INFO>> subpasses;
std::shared_ptr<std::vector<IMAGE_VIEW_STATE *>> attachments;
};
layer_data::unordered_map<VkDescriptorSet, std::vector<CmdDrawDispatchInfo>> validate_descriptorsets_in_queuesubmit;
// If VK_NV_inherited_viewport_scissor is enabled and VkCommandBufferInheritanceViewportScissorInfoNV::viewportScissor2D is
// true, then is the nonempty list of viewports passed in pViewportDepths. Otherwise, this is empty.
std::vector<VkViewport> inheritedViewportDepths;
// For each draw command D recorded to this command buffer, let
// * g_D be the graphics pipeline used
// * v_G be the viewportCount of g_D (0 if g_D disables rasterization or enables VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT_EXT)
// * s_G be the scissorCount of g_D (0 if g_D disables rasterization or enables VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT)
// Then this value is max(0, max(v_G for all D in cb), max(s_G for all D in cb))
uint32_t usedViewportScissorCount;
uint32_t pipelineStaticViewportCount; // v_G for currently-bound graphics pipeline.
uint32_t pipelineStaticScissorCount; // s_G for currently-bound graphics pipeline.
uint32_t viewportMask;
uint32_t viewportWithCountMask;
uint32_t viewportWithCountCount;
uint32_t scissorMask;
uint32_t scissorWithCountMask;
uint32_t scissorWithCountCount;
// Dynamic viewports set in this command buffer; if bit j of viewportMask is set then dynamicViewports[j] is valid, but the
// converse need not be true.
std::vector<VkViewport> dynamicViewports;
// Bits set when binding graphics pipeline defining corresponding static state, or executing any secondary command buffer.
// Bits unset by calling a corresponding vkCmdSet[State] cmd.
uint32_t trashedViewportMask;
uint32_t trashedScissorMask;
bool trashedViewportCount;
bool trashedScissorCount;
// True iff any draw command recorded to this command buffer consumes dynamic viewport/scissor with count state.
bool usedDynamicViewportCount;
bool usedDynamicScissorCount;
uint32_t initial_device_mask;
VkPrimitiveTopology primitiveTopology;
bool rasterization_disabled = false;
safe_VkRenderPassBeginInfo activeRenderPassBeginInfo;
std::shared_ptr<RENDER_PASS_STATE> activeRenderPass;
std::shared_ptr<std::vector<SUBPASS_INFO>> active_subpasses;
std::shared_ptr<std::vector<IMAGE_VIEW_STATE *>> active_attachments;
std::set<std::shared_ptr<IMAGE_VIEW_STATE>> attachments_view_states;
VkSubpassContents activeSubpassContents;
uint32_t active_render_pass_device_mask;
uint32_t activeSubpass;
std::shared_ptr<FRAMEBUFFER_STATE> activeFramebuffer;
// Unified data structs to track objects bound to this command buffer as well as object
// dependencies that have been broken : either destroyed objects, or updated descriptor sets
layer_data::unordered_set<std::shared_ptr<BASE_NODE>> object_bindings;
layer_data::unordered_map<VulkanTypedHandle, LogObjectList> broken_bindings;
QFOTransferBarrierSets<QFOBufferTransferBarrier> qfo_transfer_buffer_barriers;
QFOTransferBarrierSets<QFOImageTransferBarrier> qfo_transfer_image_barriers;
layer_data::unordered_set<VkEvent> waitedEvents;
std::vector<VkEvent> writeEventsBeforeWait;
std::vector<VkEvent> events;
layer_data::unordered_set<QueryObject> activeQueries;
layer_data::unordered_set<QueryObject> startedQueries;
layer_data::unordered_set<QueryObject> resetQueries;
layer_data::unordered_set<QueryObject> updatedQueries;
CommandBufferImageLayoutMap image_layout_map;
CommandBufferAliasedLayoutMap aliased_image_layout_map; // storage for potentially aliased images
CBVertexBufferBindingInfo current_vertex_buffer_binding_info;
bool vertex_buffer_used; // Track for perf warning to make sure any bound vtx buffer used
VkCommandBuffer primaryCommandBuffer;
// If primary, the secondary command buffers we will call.
layer_data::unordered_set<CMD_BUFFER_STATE *> linkedCommandBuffers;
// Validation functions run at primary CB queue submit time
using QueueCallback = std::function<bool(const ValidationStateTracker &device_data, const class QUEUE_STATE &queue_state,
const CMD_BUFFER_STATE &cb_state)>;
std::vector<QueueCallback> queue_submit_functions;
// Used by some layers to defer actions until vkCmdEndRenderPass time.
// Layers using this are responsible for inserting the callbacks into queue_submit_functions.
std::vector<QueueCallback> queue_submit_functions_after_render_pass;
// Validation functions run when secondary CB is executed in primary
std::vector<std::function<bool(const CMD_BUFFER_STATE &secondary, const CMD_BUFFER_STATE *primary, const FRAMEBUFFER_STATE *)>>
cmd_execute_commands_functions;
std::vector<std::function<bool(CMD_BUFFER_STATE &cb_state, bool do_validate, EventToStageMap *localEventToStageMap)>>
eventUpdates;
std::vector<std::function<bool(CMD_BUFFER_STATE &cb_state, bool do_validate, VkQueryPool &firstPerfQueryPool,
uint32_t perfQueryPass, QueryMap *localQueryToStateMap)>>
queryUpdates;
layer_data::unordered_map<const cvdescriptorset::DescriptorSet *, cvdescriptorset::DescriptorSet::CachedValidation>
descriptorset_cache;
IndexBufferBinding index_buffer_binding;
bool performance_lock_acquired = false;
bool performance_lock_released = false;
// Cache of current insert label...
LoggingLabel debug_label;
std::vector<uint8_t> push_constant_data;
PushConstantRangesId push_constant_data_ranges;
std::map<VkShaderStageFlagBits, std::vector<uint8_t>>
push_constant_data_update; // vector's value is enum PushConstantByteState.
VkPipelineLayout push_constant_pipeline_layout_set;
// Used for Best Practices tracking
uint32_t small_indexed_draw_call_count;
// Video coding related state tracking
std::shared_ptr<VIDEO_SESSION_STATE> bound_video_session;
std::shared_ptr<VIDEO_SESSION_PARAMETERS_STATE> bound_video_session_parameters;
BoundVideoPictureResources bound_video_picture_resources;
VideoSessionUpdateMap video_session_updates;
bool transform_feedback_active{false};
bool conditional_rendering_active{false};
bool conditional_rendering_inside_render_pass{false};
uint32_t conditional_rendering_subpass{0};
uint32_t dynamicColorWriteEnableAttachmentCount{0};
std::vector<VkDescriptorBufferBindingInfoEXT> descriptor_buffer_binding_info;
mutable std::shared_mutex lock;
ReadLockGuard ReadLock() const { return ReadLockGuard(lock); }
WriteLockGuard WriteLock() { return WriteLockGuard(lock); }
CMD_BUFFER_STATE(ValidationStateTracker *, VkCommandBuffer cb, const VkCommandBufferAllocateInfo *pCreateInfo,
const COMMAND_POOL_STATE *cmd_pool);
virtual ~CMD_BUFFER_STATE() { Destroy(); }
void Destroy() override;
VkCommandBuffer commandBuffer() const { return handle_.Cast<VkCommandBuffer>(); }
IMAGE_VIEW_STATE *GetActiveAttachmentImageViewState(uint32_t index);
const IMAGE_VIEW_STATE *GetActiveAttachmentImageViewState(uint32_t index) const;
void AddChild(std::shared_ptr<BASE_NODE> &base_node);
template <typename StateObject>
void AddChild(std::shared_ptr<StateObject> &child_node) {
auto base = std::static_pointer_cast<BASE_NODE>(child_node);
AddChild(base);
}
template <typename StateObject>
void AddChildren(layer_data::span<std::shared_ptr<StateObject>> &child_nodes) {
for (auto &child_node : child_nodes) {
AddChild(child_node);
}
}
void RemoveChild(std::shared_ptr<BASE_NODE> &base_node);
template <typename StateObject>
void RemoveChild(std::shared_ptr<StateObject> &child_node) {
auto base = std::static_pointer_cast<BASE_NODE>(child_node);
RemoveChild(base);
}
virtual void Reset();
void IncrementResources();
void ResetPushConstantDataIfIncompatible(const PIPELINE_LAYOUT_STATE *pipeline_layout_state);
const ImageSubresourceLayoutMap *GetImageSubresourceLayoutMap(const IMAGE_STATE &image_state) const;
ImageSubresourceLayoutMap *GetImageSubresourceLayoutMap(const IMAGE_STATE &image_state);
const CommandBufferImageLayoutMap& GetImageSubresourceLayoutMap() const;
const QFOTransferBarrierSets<QFOImageTransferBarrier> &GetQFOBarrierSets(const QFOImageTransferBarrier &type_tag) const {
return qfo_transfer_image_barriers;
}
const QFOTransferBarrierSets<QFOBufferTransferBarrier> &GetQFOBarrierSets(const QFOBufferTransferBarrier &type_tag) const {
return qfo_transfer_buffer_barriers;
}
QFOTransferBarrierSets<QFOImageTransferBarrier> &GetQFOBarrierSets(const QFOImageTransferBarrier &type_tag) {
return qfo_transfer_image_barriers;
}
QFOTransferBarrierSets<QFOBufferTransferBarrier> &GetQFOBarrierSets(const QFOBufferTransferBarrier &type_tag) {
return qfo_transfer_buffer_barriers;
}
PIPELINE_STATE *GetCurrentPipeline(VkPipelineBindPoint pipelineBindPoint) const {
const auto lv_bind_point = ConvertToLvlBindPoint(pipelineBindPoint);
return lastBound[lv_bind_point].pipeline_state;
}
void GetCurrentPipelineAndDesriptorSets(VkPipelineBindPoint pipelineBindPoint, const PIPELINE_STATE **rtn_pipe,
const std::vector<LAST_BOUND_STATE::PER_SET> **rtn_sets) const {
const auto lv_bind_point = ConvertToLvlBindPoint(pipelineBindPoint);
const auto &last_bound = lastBound[lv_bind_point];
if (!last_bound.IsUsing()) {
return;
}
*rtn_pipe = last_bound.pipeline_state;
*rtn_sets = &(last_bound.per_set);
}
VkQueueFlags GetQueueFlags() const {
return command_pool->queue_flags;
}
template <typename Barrier>
inline bool IsReleaseOp(const Barrier &barrier) const {
return (IsTransferOp(barrier)) && (command_pool->queueFamilyIndex == barrier.srcQueueFamilyIndex);
}
template <typename Barrier>
inline bool IsAcquireOp(const Barrier &barrier) const {
return (IsTransferOp(barrier)) && (command_pool->queueFamilyIndex == barrier.dstQueueFamilyIndex);
}
void Begin(const VkCommandBufferBeginInfo *pBeginInfo);
void End(VkResult result);
void BeginQuery(const QueryObject &query_obj);
void EndQuery(const QueryObject &query_obj);
void EndQueries(VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount);
void ResetQueryPool(VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount);
bool UpdatesQuery(const QueryObject &query_obj) const;
void BeginRenderPass(CMD_TYPE cmd_type, const VkRenderPassBeginInfo *pRenderPassBegin, VkSubpassContents contents);
void NextSubpass(CMD_TYPE cmd_type, VkSubpassContents contents);
void EndRenderPass(CMD_TYPE cmd_type);
void BeginRendering(CMD_TYPE cmd_type, const VkRenderingInfo *pRenderingInfo);
void BeginVideoCoding(const VkVideoBeginCodingInfoKHR *pBeginInfo);
void EndVideoCoding(const VkVideoEndCodingInfoKHR *pEndCodingInfo);
void ControlVideoCoding(const VkVideoCodingControlInfoKHR *pControlInfo);
void DecodeVideo(const VkVideoDecodeInfoKHR *pDecodeInfo);
void ExecuteCommands(layer_data::span<const VkCommandBuffer> secondary_command_buffers);
void UpdateLastBoundDescriptorSets(VkPipelineBindPoint pipeline_bind_point, const PIPELINE_LAYOUT_STATE &pipeline_layout,
uint32_t first_set, uint32_t set_count, const VkDescriptorSet *pDescriptorSets,
std::shared_ptr<cvdescriptorset::DescriptorSet> &push_descriptor_set,
uint32_t dynamic_offset_count, const uint32_t *p_dynamic_offsets);
void UpdateLastBoundDescriptorBuffers(VkPipelineBindPoint pipeline_bind_point, const PIPELINE_LAYOUT_STATE &pipeline_layout,
uint32_t first_set, uint32_t set_count, const uint32_t *buffer_indicies,
const VkDeviceSize *buffer_offsets);
void PushDescriptorSetState(VkPipelineBindPoint pipelineBindPoint, const PIPELINE_LAYOUT_STATE &pipeline_layout, uint32_t set,
uint32_t descriptorWriteCount, const VkWriteDescriptorSet *pDescriptorWrites);
void UpdateDrawCmd(CMD_TYPE cmd_type);
void UpdateDispatchCmd(CMD_TYPE cmd_type);
void UpdateTraceRayCmd(CMD_TYPE cmd_type);
void UpdatePipelineState(CMD_TYPE cmd_type, const VkPipelineBindPoint bind_point);
virtual void RecordCmd(CMD_TYPE cmd_type);
void RecordStateCmd(CMD_TYPE cmd_type, CBDynamicStatus state);
void RecordStateCmd(CMD_TYPE cmd_type, CBDynamicFlags const &state_bits);
void RecordColorWriteEnableStateCmd(CMD_TYPE cmd_type, CBDynamicStatus state, uint32_t attachment_count);
void RecordTransferCmd(CMD_TYPE cmd_type, std::shared_ptr<BINDABLE> &&buf1, std::shared_ptr<BINDABLE> &&buf2 = nullptr);
void RecordSetEvent(CMD_TYPE cmd_type, VkEvent event, VkPipelineStageFlags2KHR stageMask);
void RecordResetEvent(CMD_TYPE cmd_type, VkEvent event, VkPipelineStageFlags2KHR stageMask);
virtual void RecordWaitEvents(CMD_TYPE cmd_type, uint32_t eventCount, const VkEvent *pEvents,
VkPipelineStageFlags2KHR src_stage_mask);
void RecordWriteTimestamp(CMD_TYPE cmd_type, VkPipelineStageFlags2KHR pipelineStage, VkQueryPool queryPool, uint32_t slot);
void RecordBarriers(uint32_t memoryBarrierCount, const VkMemoryBarrier *pMemoryBarriers, uint32_t bufferMemoryBarrierCount,
const VkBufferMemoryBarrier *pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount,
const VkImageMemoryBarrier *pImageMemoryBarriers);
void RecordBarriers(const VkDependencyInfoKHR &dep_info);
void SetImageViewLayout(const IMAGE_VIEW_STATE &view_state, VkImageLayout layout, VkImageLayout layoutStencil);
void SetImageViewInitialLayout(const IMAGE_VIEW_STATE &view_state, VkImageLayout layout);
void SetImageLayout(const IMAGE_STATE &image_state, const VkImageSubresourceRange &image_subresource_range,
VkImageLayout layout, VkImageLayout expected_layout = kInvalidLayout);
void SetImageLayout(const IMAGE_STATE &image_state, const VkImageSubresourceLayers &image_subresource_layers,
VkImageLayout layout);
void SetImageInitialLayout(VkImage image, const VkImageSubresourceRange &range, VkImageLayout layout);
void SetImageInitialLayout(const IMAGE_STATE &image_state, const VkImageSubresourceRange &range, VkImageLayout layout);
void SetImageInitialLayout(const IMAGE_STATE &image_state, const VkImageSubresourceLayers &layers, VkImageLayout layout);
void Submit(uint32_t perf_submit_pass);
void Retire(uint32_t perf_submit_pass, const std::function<bool(const QueryObject &)> &is_query_updated_after);
uint32_t GetDynamicColorAttachmentCount() const {
if (activeRenderPass) {
if (activeRenderPass->use_dynamic_rendering_inherited) {
return activeRenderPass->inheritance_rendering_info.colorAttachmentCount;
}
if (activeRenderPass->use_dynamic_rendering) {
return activeRenderPass->dynamic_rendering_begin_rendering_info.colorAttachmentCount;
}
}
return 0;
}
bool IsValidDynamicColorAttachmentImageIndex(uint32_t index) const { return index < GetDynamicColorAttachmentCount(); }
uint32_t GetDynamicColorAttachmentImageIndex(uint32_t index) const { return index; }
uint32_t GetDynamicColorResolveAttachmentImageIndex(uint32_t index) const { return index + GetDynamicColorAttachmentCount(); }
uint32_t GetDynamicDepthAttachmentImageIndex() const { return 2 * GetDynamicColorAttachmentCount(); }
uint32_t GetDynamicDepthResolveAttachmentImageIndex() const { return 2 * GetDynamicColorAttachmentCount() + 1; }
uint32_t GetDynamicStencilAttachmentImageIndex() const { return 2 * GetDynamicColorAttachmentCount() + 2; }
uint32_t GetDynamicStencilResolveAttachmentImageIndex() const { return 2 * GetDynamicColorAttachmentCount() + 3; }
bool HasValidDynamicDepthAttachment() const {
if (activeRenderPass) {
if (activeRenderPass->use_dynamic_rendering_inherited) {
return activeRenderPass->inheritance_rendering_info.depthAttachmentFormat != VK_FORMAT_UNDEFINED;
}
if (activeRenderPass->use_dynamic_rendering) {
return activeRenderPass->dynamic_rendering_begin_rendering_info.pDepthAttachment != nullptr;
}
}
return false;
}
bool HasValidDynamicStencilAttachment() const {
if (activeRenderPass) {
if (activeRenderPass->use_dynamic_rendering_inherited) {
return activeRenderPass->inheritance_rendering_info.stencilAttachmentFormat != VK_FORMAT_UNDEFINED;
}
if (activeRenderPass->use_dynamic_rendering) {
return activeRenderPass->dynamic_rendering_begin_rendering_info.pStencilAttachment != nullptr;
}
}
return false;
}
bool RasterizationDisabled() const;
inline void BindPipeline(LvlBindPoint bind_point, PIPELINE_STATE *pipe_state) {
lastBound[bind_point].pipeline_state = pipe_state;
pipeline_bound = true;
}
private:
void ResetCBState();
protected:
void NotifyInvalidate(const BASE_NODE::NodeList &invalid_nodes, bool unlink) override;
void UpdateAttachmentsView(const VkRenderPassBeginInfo *pRenderPassBegin);
void UnbindResources();
};
// specializations for barriers that cannot do queue family ownership transfers
template <>
inline bool CMD_BUFFER_STATE::IsReleaseOp(const VkMemoryBarrier &barrier) const {
return false;
}
template <>
inline bool CMD_BUFFER_STATE::IsReleaseOp(const VkMemoryBarrier2KHR &barrier) const {
return false;
}
template <>
inline bool CMD_BUFFER_STATE::IsReleaseOp(const VkSubpassDependency2 &barrier) const {
return false;
}
template <>
inline bool CMD_BUFFER_STATE::IsAcquireOp(const VkMemoryBarrier &barrier) const {
return false;
}
template <>
inline bool CMD_BUFFER_STATE::IsAcquireOp(const VkMemoryBarrier2KHR &barrier) const {
return false;
}
template <>
inline bool CMD_BUFFER_STATE::IsAcquireOp(const VkSubpassDependency2 &barrier) const {
return false;
}
|