2017-04-23 04:44:34 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-04-23 04:44:34 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-01-21 10:22:45 +00:00
|
|
|
#include <memory>
|
2017-08-24 02:46:23 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2018-01-21 10:22:45 +00:00
|
|
|
#include "VideoCommon/AbstractFramebuffer.h"
|
2017-10-21 14:49:40 +00:00
|
|
|
#include "VideoCommon/AbstractStagingTexture.h"
|
2017-04-23 04:44:34 +00:00
|
|
|
#include "VideoCommon/AbstractTexture.h"
|
|
|
|
|
|
|
|
namespace SW
|
|
|
|
{
|
|
|
|
class SWTexture final : public AbstractTexture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit SWTexture(const TextureConfig& tex_config);
|
|
|
|
~SWTexture() = default;
|
|
|
|
|
2017-10-30 11:51:42 +00:00
|
|
|
void CopyRectangleFromTexture(const AbstractTexture* src,
|
|
|
|
const MathUtil::Rectangle<int>& src_rect, u32 src_layer,
|
|
|
|
u32 src_level, const MathUtil::Rectangle<int>& dst_rect,
|
|
|
|
u32 dst_layer, u32 dst_level) override;
|
2018-01-21 05:03:06 +00:00
|
|
|
void ResolveFromTexture(const AbstractTexture* src, const MathUtil::Rectangle<int>& rect,
|
|
|
|
u32 layer, u32 level) override;
|
2023-01-28 00:46:53 +00:00
|
|
|
void Load(u32 level, u32 width, u32 height, u32 row_length, const u8* buffer, size_t buffer_size,
|
|
|
|
u32 layer) override;
|
2017-08-24 02:46:23 +00:00
|
|
|
|
2022-09-27 00:49:49 +00:00
|
|
|
const u8* GetData(u32 layer, u32 level) const;
|
|
|
|
u8* GetData(u32 layer, u32 level);
|
2017-08-24 02:46:23 +00:00
|
|
|
|
|
|
|
private:
|
2022-09-27 00:49:49 +00:00
|
|
|
std::vector<std::vector<std::vector<u8>>> m_data;
|
2017-04-23 04:44:34 +00:00
|
|
|
};
|
|
|
|
|
2017-10-21 14:49:40 +00:00
|
|
|
class SWStagingTexture final : public AbstractStagingTexture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit SWStagingTexture(StagingTextureType type, const TextureConfig& config);
|
|
|
|
~SWStagingTexture();
|
|
|
|
|
|
|
|
void CopyFromTexture(const AbstractTexture* src, const MathUtil::Rectangle<int>& src_rect,
|
|
|
|
u32 src_layer, u32 src_level,
|
|
|
|
const MathUtil::Rectangle<int>& dst_rect) override;
|
|
|
|
void CopyToTexture(const MathUtil::Rectangle<int>& src_rect, AbstractTexture* dst,
|
|
|
|
const MathUtil::Rectangle<int>& dst_rect, u32 dst_layer,
|
|
|
|
u32 dst_level) override;
|
|
|
|
|
|
|
|
bool Map() override;
|
|
|
|
void Unmap() override;
|
|
|
|
void Flush() override;
|
|
|
|
|
2018-11-02 14:17:00 +00:00
|
|
|
void SetMapStride(size_t stride) { m_map_stride = stride; }
|
|
|
|
|
2017-10-21 14:49:40 +00:00
|
|
|
private:
|
|
|
|
std::vector<u8> m_data;
|
|
|
|
};
|
|
|
|
|
2018-01-21 10:22:45 +00:00
|
|
|
class SWFramebuffer final : public AbstractFramebuffer
|
|
|
|
{
|
|
|
|
public:
|
2019-02-15 01:59:50 +00:00
|
|
|
explicit SWFramebuffer(AbstractTexture* color_attachment, AbstractTexture* depth_attachment,
|
2023-05-29 01:59:02 +00:00
|
|
|
std::vector<AbstractTexture*> additional_color_attachments,
|
2019-02-15 01:59:50 +00:00
|
|
|
AbstractTextureFormat color_format, AbstractTextureFormat depth_format,
|
2018-01-21 10:22:45 +00:00
|
|
|
u32 width, u32 height, u32 layers, u32 samples);
|
|
|
|
~SWFramebuffer() override = default;
|
|
|
|
|
2023-05-29 01:59:02 +00:00
|
|
|
static std::unique_ptr<SWFramebuffer>
|
|
|
|
Create(SWTexture* color_attachment, SWTexture* depth_attachment,
|
|
|
|
std::vector<AbstractTexture*> additional_color_attachments);
|
2018-01-21 10:22:45 +00:00
|
|
|
};
|
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
} // namespace SW
|