diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-04-05 18:30:25 +1000 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-04-05 18:30:25 +1000 |
| commit | 21e55ae8a1b3ddd4dff6c24a57bdc7d7272fff16 (patch) | |
| tree | 1b13d5ea55c38d41becd64b003cdb0645159970a /src/queue_context.hh | |
| parent | 411f7acb1f92db88d2a3c92bb40da2133852b40e (diff) | |
Add boilerplate for separate implementations
Diffstat (limited to 'src/queue_context.hh')
| -rw-r--r-- | src/queue_context.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/queue_context.hh b/src/queue_context.hh index f10c796..02d6367 100644 --- a/src/queue_context.hh +++ b/src/queue_context.hh @@ -3,6 +3,7 @@ #include "context.hh" #include "device_clock.hh" +#include "strategies/queue_strategy.hh" #include "timestamp_pool.hh" #include <vulkan/utility/vk_dispatch_table.h> @@ -42,6 +43,8 @@ class QueueContext final : public Context { std::unique_ptr<TimestampPool> timestamp_pool; + std::unique_ptr<QueueStrategy> strategy; + public: QueueContext(DeviceContext& device_context, const VkQueue& queue, const std::uint32_t& queue_family_index); |
