aboutsummaryrefslogtreecommitdiff
path: root/src/physical_device_context.cc
blob: 105b840b4eb4189f776a16fe2afa778f2b4ead66 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "physical_device_context.hh"

namespace low_latency {

PhysicalDeviceContext::PhysicalDeviceContext(
    InstanceContext& instance_context, const VkPhysicalDevice& physical_device)
    : instance(instance_context), physical_device(physical_device) {}

PhysicalDeviceContext::~PhysicalDeviceContext() {}

} // namespace low_latency