• Home
  • Raw
  • Download

Lines Matching refs:report_data

1122 static inline void BeginQueueDebugUtilsLabel(debug_report_data *report_data, VkQueue queue,  in BeginQueueDebugUtilsLabel()  argument
1124 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in BeginQueueDebugUtilsLabel()
1126 auto label_iter = report_data->debugUtilsQueueLabels.find(queue); in BeginQueueDebugUtilsLabel()
1127 if (label_iter == report_data->debugUtilsQueueLabels.end()) { in BeginQueueDebugUtilsLabel()
1130 report_data->debugUtilsQueueLabels.insert({queue, new_queue_labels}); in BeginQueueDebugUtilsLabel()
1136 if (report_data->queueLabelHasInsert) { in BeginQueueDebugUtilsLabel()
1137 report_data->queueLabelHasInsert = false; in BeginQueueDebugUtilsLabel()
1145 static inline void EndQueueDebugUtilsLabel(debug_report_data *report_data, VkQueue queue) { in EndQueueDebugUtilsLabel() argument
1146 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in EndQueueDebugUtilsLabel()
1147 auto label_iter = report_data->debugUtilsQueueLabels.find(queue); in EndQueueDebugUtilsLabel()
1148 if (label_iter != report_data->debugUtilsQueueLabels.end()) { in EndQueueDebugUtilsLabel()
1153 if (report_data->queueLabelHasInsert) { in EndQueueDebugUtilsLabel()
1154 report_data->queueLabelHasInsert = false; in EndQueueDebugUtilsLabel()
1162 static inline void InsertQueueDebugUtilsLabel(debug_report_data *report_data, VkQueue queue, in InsertQueueDebugUtilsLabel() argument
1164 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in InsertQueueDebugUtilsLabel()
1166 auto label_iter = report_data->debugUtilsQueueLabels.find(queue); in InsertQueueDebugUtilsLabel()
1167 if (label_iter == report_data->debugUtilsQueueLabels.end()) { in InsertQueueDebugUtilsLabel()
1170 report_data->debugUtilsQueueLabels.insert({queue, new_queue_labels}); in InsertQueueDebugUtilsLabel()
1176 if (report_data->queueLabelHasInsert) { in InsertQueueDebugUtilsLabel()
1182 report_data->queueLabelHasInsert = true; in InsertQueueDebugUtilsLabel()
1187 static inline void BeginCmdDebugUtilsLabel(debug_report_data *report_data, VkCommandBuffer command_… in BeginCmdDebugUtilsLabel() argument
1189 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in BeginCmdDebugUtilsLabel()
1191 auto label_iter = report_data->debugUtilsCmdBufLabels.find(command_buffer); in BeginCmdDebugUtilsLabel()
1192 if (label_iter == report_data->debugUtilsCmdBufLabels.end()) { in BeginCmdDebugUtilsLabel()
1195 report_data->debugUtilsCmdBufLabels.insert({command_buffer, new_cmdbuf_labels}); in BeginCmdDebugUtilsLabel()
1201 if (report_data->cmdBufLabelHasInsert) { in BeginCmdDebugUtilsLabel()
1202 report_data->cmdBufLabelHasInsert = false; in BeginCmdDebugUtilsLabel()
1210 static inline void EndCmdDebugUtilsLabel(debug_report_data *report_data, VkCommandBuffer command_bu… in EndCmdDebugUtilsLabel() argument
1211 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in EndCmdDebugUtilsLabel()
1212 auto label_iter = report_data->debugUtilsCmdBufLabels.find(command_buffer); in EndCmdDebugUtilsLabel()
1213 if (label_iter != report_data->debugUtilsCmdBufLabels.end()) { in EndCmdDebugUtilsLabel()
1218 if (report_data->cmdBufLabelHasInsert) { in EndCmdDebugUtilsLabel()
1219 report_data->cmdBufLabelHasInsert = false; in EndCmdDebugUtilsLabel()
1230 static inline void InsertCmdDebugUtilsLabel(debug_report_data *report_data, VkCommandBuffer command… in InsertCmdDebugUtilsLabel() argument
1232 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in InsertCmdDebugUtilsLabel()
1234 auto label_iter = report_data->debugUtilsCmdBufLabels.find(command_buffer); in InsertCmdDebugUtilsLabel()
1235 if (label_iter == report_data->debugUtilsCmdBufLabels.end()) { in InsertCmdDebugUtilsLabel()
1238 report_data->debugUtilsCmdBufLabels.insert({command_buffer, new_cmdbuf_labels}); in InsertCmdDebugUtilsLabel()
1244 if (report_data->cmdBufLabelHasInsert) { in InsertCmdDebugUtilsLabel()
1250 report_data->cmdBufLabelHasInsert = true; in InsertCmdDebugUtilsLabel()