/* Created on: Oct 8, 2019 Copyright 2019 flyinghead This file is part of Flycast. Flycast is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. Flycast is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Flycast. If not, see . */ #pragma once #include "vulkan.h" #include #include class CommandPool : public FlightManager { public: void Init(size_t chainSize = 2); void Term(); void BeginFrame(); void EndFrame(); void EndFrameAndWait(); vk::CommandBuffer Allocate(bool submitLast = false); int GetIndex() const { return index; } void addToFlight(Deletable *object) override { inFlightObjects[index].emplace_back(object); } private: int index = 0; std::vector> freeBuffers; std::vector> inFlightBuffers; std::vector lastBuffers; std::vector commandPools; std::vector fences; // size should be the same as used by client: 2 for renderer (texCommandPool) size_t chainSize; std::vector>> inFlightObjects; bool frameStarted = false; vk::Device device{}; };