Home
last modified time | relevance | path

Searched refs:cmd_buf_labels (Results 1 – 2 of 2) sorted by relevance

/external/vulkan-validation-layers/layers/
Dvk_layer_logging.h431 std::vector<VkDebugUtilsLabelEXT> cmd_buf_labels; in debug_log_msg() local
449 cmd_buf_labels = label_iter->second->Export(); in debug_log_msg()
450 callback_data.cmdBufLabelCount = static_cast<uint32_t>(cmd_buf_labels.size()); in debug_log_msg()
451 … callback_data.pCmdBufLabels = cmd_buf_labels.empty() ? nullptr : cmd_buf_labels.data(); in debug_log_msg()
/external/rust/crates/ash/src/vk/
Ddefinitions.rs25168 pub fn cmd_buf_labels(mut self, cmd_buf_labels: &'a [DebugUtilsLabelEXT]) -> Self { in cmd_buf_labels() method
25169 self.inner.cmd_buf_label_count = cmd_buf_labels.len() as _; in cmd_buf_labels()
25170 self.inner.p_cmd_buf_labels = cmd_buf_labels.as_ptr(); in cmd_buf_labels()