File tree Expand file tree Collapse file tree 2 files changed +0
-34
lines changed
backends/vulkan/runtime/api Expand file tree Collapse file tree 2 files changed +0
-34
lines changed Original file line number Diff line number Diff line change @@ -362,25 +362,6 @@ void Adapter::submit_cmd(
362
362
VK_CHECK (vkQueueSubmit (device_queue.handle , 1u , &submit_info, fence));
363
363
}
364
364
365
- void Adapter::submit_cmds (
366
- const Adapter::Queue& device_queue,
367
- const std::vector<VkCommandBuffer>& cmds,
368
- VkFence fence) {
369
- const VkSubmitInfo submit_info{
370
- VK_STRUCTURE_TYPE_SUBMIT_INFO, // sType
371
- nullptr , // pNext
372
- 0u , // waitSemaphoreCount
373
- nullptr , // pWaitSemaphores
374
- nullptr , // pWaitDstStageMask
375
- utils::safe_downcast<uint32_t >(cmds.size ()), // commandBufferCount
376
- cmds.data (), // pCommandBuffers
377
- 0u , // signalSemaphoreCount
378
- nullptr , // pSignalSemaphores
379
- };
380
-
381
- VK_CHECK (vkQueueSubmit (device_queue.handle , 1u , &submit_info, fence));
382
- }
383
-
384
365
std::string Adapter::stringize () const {
385
366
std::stringstream ss;
386
367
Original file line number Diff line number Diff line change @@ -234,21 +234,6 @@ class Adapter final {
234
234
void
235
235
submit_cmd (const Queue&, VkCommandBuffer, VkFence fence = VK_NULL_HANDLE);
236
236
237
- void submit_cmds (
238
- const Adapter::Queue&,
239
- const std::vector<VkCommandBuffer>&,
240
- VkFence fence = VK_NULL_HANDLE);
241
-
242
- // Miscellaneous
243
-
244
- inline utils::uvec3 local_work_group_size () const {
245
- return {
246
- 4u ,
247
- 4u ,
248
- 4u ,
249
- };
250
- }
251
-
252
237
std::string stringize () const ;
253
238
friend std::ostream& operator <<(std::ostream&, const Adapter&);
254
239
};
You can’t perform that action at this time.
0 commit comments