remove dead comments

This commit is contained in:
David Allemang
2024-04-03 16:14:32 -04:00
parent 5809b64f1c
commit 52865ab9e9
2 changed files with 2 additions and 38 deletions

View File

@@ -351,11 +351,13 @@ pub fn copyBuffer(
.p_command_buffers = @ptrCast(&cmdbuf),
.p_wait_dst_stage_mask = undefined,
};
// creating and submitting a queue for every copy operation seems a bad idea for "streamed" data
// gonna want a way to send a copy operation WITH SYNCHRONIZATION PRIMITIVES on a particular queue
// see https://stackoverflow.com/a/62183243
//
// this may be a misunderstanding on how submission works...
try vkd.queueSubmit(queue, 1, @ptrCast(&si), .null_handle);
try vkd.queueWaitIdle(queue);
}