aboutsummaryrefslogtreecommitdiff
path: root/src/device_context.cc
diff options
context:
space:
mode:
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;