blob: 36d2c6659bcdc888f117fa05a82628cf720edd69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "instance_context.hh"
#include <utility>
namespace low_latency {
InstanceContext::InstanceContext(const VkInstance& instance,
VkuInstanceDispatchTable&& vtable)
: instance(instance), vtable(std::move(vtable)) {}
InstanceContext::~InstanceContext() {}
} // namespace low_latency
|