aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/low_latency2/queue_strategy.cc
blob: e67d279f5e854575ddbd4bf6c5bbf9b18312c3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "queue_strategy.hh"

namespace low_latency {

LowLatency2QueueStrategy::LowLatency2QueueStrategy(QueueContext& queue)
    : QueueStrategy(queue) {}

LowLatency2QueueStrategy::~LowLatency2QueueStrategy() {}

void LowLatency2QueueStrategy::notify_submit(
    [[maybe_unused]] const VkSubmitInfo& submit,
    [[maybe_unused]] std::unique_ptr<Submission> submission) {}

void LowLatency2QueueStrategy::notify_submit(
    [[maybe_unused]] const VkSubmitInfo2& submit,
    [[maybe_unused]] std::unique_ptr<Submission> submission) {}

} // namespace low_latency