aboutsummaryrefslogtreecommitdiff
path: root/src/device_context.cc
diff options
context:
space:
mode:
authorNicolas James <nj3ahxac@gmail.com>2026-02-16 17:21:16 +1100
committerNicolas James <nj3ahxac@gmail.com>2026-02-16 17:21:16 +1100
commit4c1a11fdb9200a4a54b3b282b6acd10e6ec583ce (patch)
tree09162047c89cb9404337b0babd0037ba3bdf583a /src/device_context.cc
parentb79dc96e68848a4e313d400691bf047aa29973f6 (diff)
Remove sdld, we never use it
Diffstat (limited to 'src/device_context.cc')
-rw-r--r--src/device_context.cc10
1 files changed, 5 insertions, 5 deletions
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 <utility>
#include <iostream>
+#include <utility>
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;