diff options
Diffstat (limited to 'src/device_context.cc')
| -rw-r--r-- | src/device_context.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/device_context.cc b/src/device_context.cc new file mode 100644 index 0000000..4be1872 --- /dev/null +++ b/src/device_context.cc @@ -0,0 +1,15 @@ +#include "device_context.hh" +#include "queue_context.hh" + +#include <utility> + +namespace low_latency { + +DeviceContext::DeviceContext(InstanceContext& parent_instance, + const VkDevice& device, + VkuDeviceDispatchTable&& vtable) + : instance(parent_instance), device(device), vtable(std::move(vtable)) + +{} + +} // namespace low_latency
\ No newline at end of file |
