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.hh5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/device_context.hh b/src/device_context.hh
index 8a86cfb..9edda61 100644
--- a/src/device_context.hh
+++ b/src/device_context.hh
@@ -25,8 +25,6 @@ struct DeviceContext final : public Context {
const VkDevice device;
const VkuDeviceDispatchTable vtable;
- // Do we need to use this unless we wrap dispatchable objects?
- const PFN_vkSetDeviceLoaderData sdld;
std::unordered_map<VkQueue, std::shared_ptr<QueueContext>> queues;
@@ -60,8 +58,7 @@ struct DeviceContext final : public Context {
public:
DeviceContext(InstanceContext& parent_instance,
PhysicalDeviceContext& parent_physical,
- const VkDevice& device, const PFN_vkSetDeviceLoaderData& sdld,
- VkuDeviceDispatchTable&& vtable);
+ const VkDevice& device, VkuDeviceDispatchTable&& vtable);
virtual ~DeviceContext();
public: