forked from SaschaWillems/Vulkan
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcompute.hpp
50 lines (42 loc) · 1.84 KB
/
compute.hpp
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
#include "vks/context.hpp"
namespace vkx {
// Resources for the compute part of the example
struct Compute {
Compute(const vks::Context& context)
: context(context) {}
const vks::Context& context;
const vk::Device& device{ context.device };
vk::Queue queue;
vk::CommandPool commandPool;
struct Semaphores {
vk::Semaphore ready;
vk::Semaphore complete;
} semaphores;
virtual void prepare() {
// Create a compute capable device queue
queue = context.device.getQueue(context.queueIndices.compute, 0);
semaphores.ready = device.createSemaphore({});
semaphores.complete = device.createSemaphore({});
// Separate command pool as queue family for compute may be different than graphics
commandPool = device.createCommandPool({ vk::CommandPoolCreateFlagBits::eResetCommandBuffer, context.queueIndices.compute });
}
virtual void destroy() {
context.device.destroy(semaphores.complete);
context.device.destroy(semaphores.ready);
context.device.destroy(commandPool);
}
void submit(const vk::ArrayProxy<const vk::CommandBuffer>& commandBuffers) {
static const std::vector<vk::PipelineStageFlags> waitStages{ vk::PipelineStageFlagBits::eComputeShader };
// Submit compute commands
vk::SubmitInfo computeSubmitInfo;
computeSubmitInfo.commandBufferCount = commandBuffers.size();
computeSubmitInfo.pCommandBuffers = commandBuffers.data();
computeSubmitInfo.waitSemaphoreCount = 1;
computeSubmitInfo.pWaitSemaphores = &semaphores.ready;
computeSubmitInfo.pWaitDstStageMask = waitStages.data();
computeSubmitInfo.signalSemaphoreCount = 1;
computeSubmitInfo.pSignalSemaphores = &semaphores.complete;
queue.submit(computeSubmitInfo, {});
}
};
} // namespace vkx