aboutsummaryrefslogtreecommitdiff
path: root/src/device_context.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/device_context.hh')
-rw-r--r--src/device_context.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/device_context.hh b/src/device_context.hh
index c4d6a43..975d67c 100644
--- a/src/device_context.hh
+++ b/src/device_context.hh
@@ -14,6 +14,7 @@
#include "instance_context.hh"
#include "physical_device_context.hh"
#include "queue_context.hh"
+#include "strategies/device_strategy.hh"
namespace low_latency {
@@ -32,6 +33,8 @@ class DeviceContext final : public Context {
std::unique_ptr<DeviceClock> clock;
std::unordered_map<VkQueue, std::shared_ptr<QueueContext>> queues;
+ std::unique_ptr<DeviceStrategy> strategy;
+
public:
DeviceContext(InstanceContext& parent_instance,
PhysicalDeviceContext& parent_physical,