diff options
| author | Nicolas James <nj3ahxac@gmail.com> | 2026-04-07 18:42:42 +1000 |
|---|---|---|
| committer | Nicolas James <nj3ahxac@gmail.com> | 2026-04-07 18:42:42 +1000 |
| commit | 0fbd2284ed982f326c57ce235873950ab378cae7 (patch) | |
| tree | 114b7553da06c5ef868a99eff8933fe010dbf44c /src | |
| parent | 540b17ec0ed0659b5355eab7b018cb243eed5fa8 (diff) | |
Fix QueueContext build error
Diffstat (limited to 'src')
| -rw-r--r-- | src/queue_context.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/queue_context.hh b/src/queue_context.hh index 02d6367..88eb906 100644 --- a/src/queue_context.hh +++ b/src/queue_context.hh @@ -39,10 +39,9 @@ class QueueContext final : public Context { public: operator const VkCommandPool&() const { return this->command_pool; } }; - const std::unique_ptr<CommandPoolOwner> command_pool; + std::unique_ptr<CommandPoolOwner> command_pool; std::unique_ptr<TimestampPool> timestamp_pool; - std::unique_ptr<QueueStrategy> strategy; public: |
