/* Created on: Dec 13, 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 "quad.h" #include #include #include class Texture; class VulkanOverlay { public: ~VulkanOverlay(); void Init(QuadPipeline *pipeline) { this->pipeline = pipeline; alphaPipeline = std::unique_ptr(new QuadPipeline(true)); alphaPipeline->Init(*pipeline); for (auto& drawer : drawers) { drawer = std::unique_ptr(new QuadDrawer()); drawer->Init(pipeline); } xhairDrawer = std::unique_ptr(new QuadDrawer()); xhairDrawer->Init(alphaPipeline.get()); } void Term() { commandBuffers.clear(); alphaPipeline.reset(); for (auto& drawer : drawers) drawer.reset(); xhairDrawer.reset(); } vk::CommandBuffer Prepare(vk::CommandPool commandPool, bool vmu, bool crosshair); void Prepare(vk::CommandBuffer commandBuffer, bool vmu, bool crosshair); void Draw(vk::CommandBuffer commandBuffer, vk::Extent2D viewport, float scaling, bool vmu, bool crosshair); private: std::unique_ptr createTexture(vk::CommandBuffer commandBuffer, int width, int height, u8 *data); std::array, 8> vmuTextures; std::vector commandBuffers; std::array, 8> drawers; QuadPipeline *pipeline = nullptr; std::unique_ptr alphaPipeline; std::unique_ptr xhairTexture; std::unique_ptr xhairDrawer; };