// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include #include "common/bit_cast.h" #include "video_core/texture_cache/types.h" namespace VideoCommon { /// Framebuffer properties used to lookup a framebuffer struct RenderTargets { constexpr auto operator<=>(const RenderTargets&) const noexcept = default; constexpr bool Contains(std::span elements) const noexcept { const auto contains = [elements](ImageViewId item) { return std::ranges::find(elements, item) != elements.end(); }; return std::ranges::any_of(color_buffer_ids, contains) || contains(depth_buffer_id); } std::array color_buffer_ids{}; ImageViewId depth_buffer_id{}; std::array draw_buffers{}; Extent2D size{}; bool is_rescaled{}; }; } // namespace VideoCommon namespace std { template <> struct hash { size_t operator()(const VideoCommon::RenderTargets& rt) const noexcept { using VideoCommon::ImageViewId; size_t value = std::hash{}(rt.depth_buffer_id); for (const ImageViewId color_buffer_id : rt.color_buffer_ids) { value ^= std::hash{}(color_buffer_id); } value ^= Common::BitCast(rt.draw_buffers); value ^= Common::BitCast(rt.size); return value; } }; } // namespace std