From 4c1a11fdb9200a4a54b3b282b6acd10e6ec583ce Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Mon, 16 Feb 2026 17:21:16 +1100 Subject: Remove sdld, we never use it --- src/device_context.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/device_context.cc') diff --git a/src/device_context.cc b/src/device_context.cc index 59d818e..2c57b7e 100644 --- a/src/device_context.cc +++ b/src/device_context.cc @@ -1,18 +1,17 @@ #include "device_context.hh" #include "queue_context.hh" -#include #include +#include namespace low_latency { DeviceContext::DeviceContext(InstanceContext& parent_instance, PhysicalDeviceContext& parent_physical_device, const VkDevice& device, - const PFN_vkSetDeviceLoaderData& sdld, VkuDeviceDispatchTable&& vtable) : instance(parent_instance), physical_device(parent_physical_device), - device(device), sdld(sdld), vtable(std::move(vtable)), clock(*this) {} + device(device), vtable(std::move(vtable)), clock(*this) {} DeviceContext::~DeviceContext() { // We will let the destructor handle clearing here, but they should be @@ -25,8 +24,9 @@ DeviceContext::~DeviceContext() { void DeviceContext::notify_acquire(const VkSwapchainKHR& swapchain, const std::uint32_t& image_index, const VkSemaphore& signal_semaphore) { - - std::cerr << "notify acquire for swapchain: " << swapchain << " : " << image_index << '\n'; + + std::cerr << "notify acquire for swapchain: " << swapchain << " : " + << image_index << '\n'; std::cerr << " signal semaphore: " << signal_semaphore << '\n'; const auto it = this->swapchain_signals.try_emplace(swapchain).first; -- cgit v1.2.3