diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-02-11 23:19:15 +1100 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-02-11 23:19:15 +1100 |
| commit | 76f3ef1d7c2b4393a8e8b402deb924e606448d27 (patch) | |
| tree | a291bec0544f007536a41ec1f590338aee1163e9 /src/physical_device_context.cc | |
| parent | 77e2be172718878b38999efc247ce7571435fcc8 (diff) | |
More cleanup, fix lifetime and mutex issues
Diffstat (limited to 'src/physical_device_context.cc')
| -rw-r--r-- | src/physical_device_context.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/physical_device_context.cc b/src/physical_device_context.cc new file mode 100644 index 0000000..105b840 --- /dev/null +++ b/src/physical_device_context.cc @@ -0,0 +1,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
\ No newline at end of file |
