diff options
| author | Stenzek <stenzek@users.noreply.github.com> | 2017-12-01 14:24:06 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-01 14:24:06 +1000 |
| commit | cd68b3606cea8a7041751bda482170533bae3220 (patch) | |
| tree | 4edef80bda42a82a50ff9f9e86d64aac38c8aff3 /Source/Core/VideoBackends/Null | |
| parent | 0773a48c6c990c488e70ff7c1f46713593440ddc (diff) | |
| parent | 7f217a8bb24da323042081a02b65f84f9ce9761f (diff) | |
Merge pull request #6193 from stenzek/readbacks
Abstract Staging Textures - VideoCommon interface for texture readbacks/uploads
Diffstat (limited to 'Source/Core/VideoBackends/Null')
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullTexture.cpp | 51 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullTexture.h | 34 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/Null/Render.cpp | 12 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/Null/Render.h | 4 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/Null/TextureCache.h | 6 |
5 files changed, 95 insertions, 12 deletions
diff --git a/Source/Core/VideoBackends/Null/NullTexture.cpp b/Source/Core/VideoBackends/Null/NullTexture.cpp index 7d852f7ddf..471ec6c01c 100644 --- a/Source/Core/VideoBackends/Null/NullTexture.cpp +++ b/Source/Core/VideoBackends/Null/NullTexture.cpp @@ -14,9 +14,15 @@ void NullTexture::Bind(unsigned int stage) { } -void NullTexture::CopyRectangleFromTexture(const AbstractTexture* source, - const MathUtil::Rectangle<int>& srcrect, - const MathUtil::Rectangle<int>& dstrect) +void NullTexture::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) +{ +} +void NullTexture::ScaleRectangleFromTexture(const AbstractTexture* source, + const MathUtil::Rectangle<int>& srcrect, + const MathUtil::Rectangle<int>& dstrect) { } @@ -25,4 +31,43 @@ void NullTexture::Load(u32 level, u32 width, u32 height, u32 row_length, const u { } +NullStagingTexture::NullStagingTexture(StagingTextureType type, const TextureConfig& config) + : AbstractStagingTexture(type, config) +{ + m_texture_buf.resize(m_texel_size * config.width * config.height); + m_map_pointer = reinterpret_cast<char*>(m_texture_buf.data()); + m_map_stride = m_texel_size * config.width; +} + +NullStagingTexture::~NullStagingTexture() = default; + +void NullStagingTexture::CopyFromTexture(const AbstractTexture* src, + const MathUtil::Rectangle<int>& src_rect, u32 src_layer, + u32 src_level, const MathUtil::Rectangle<int>& dst_rect) +{ + m_needs_flush = true; +} + +void NullStagingTexture::CopyToTexture(const MathUtil::Rectangle<int>& src_rect, + AbstractTexture* dst, + const MathUtil::Rectangle<int>& dst_rect, u32 dst_layer, + u32 dst_level) +{ + m_needs_flush = true; +} + +bool NullStagingTexture::Map() +{ + return true; +} + +void NullStagingTexture::Unmap() +{ +} + +void NullStagingTexture::Flush() +{ + m_needs_flush = false; +} + } // namespace Null diff --git a/Source/Core/VideoBackends/Null/NullTexture.h b/Source/Core/VideoBackends/Null/NullTexture.h index 65f4252050..8cfedc68ca 100644 --- a/Source/Core/VideoBackends/Null/NullTexture.h +++ b/Source/Core/VideoBackends/Null/NullTexture.h @@ -4,8 +4,11 @@ #pragma once +#include <vector> + #include "Common/CommonTypes.h" +#include "VideoCommon/AbstractStagingTexture.h" #include "VideoCommon/AbstractTexture.h" namespace Null @@ -18,11 +21,36 @@ public: void Bind(unsigned int stage) override; - void CopyRectangleFromTexture(const AbstractTexture* source, - const MathUtil::Rectangle<int>& srcrect, - const MathUtil::Rectangle<int>& dstrect) override; + 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; + void ScaleRectangleFromTexture(const AbstractTexture* source, + const MathUtil::Rectangle<int>& srcrect, + const MathUtil::Rectangle<int>& dstrect) override; void Load(u32 level, u32 width, u32 height, u32 row_length, const u8* buffer, size_t buffer_size) override; }; +class NullStagingTexture final : public AbstractStagingTexture +{ +public: + explicit NullStagingTexture(StagingTextureType type, const TextureConfig& config); + ~NullStagingTexture(); + + 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; + +private: + std::vector<u8> m_texture_buf; +}; + } // namespace Null diff --git a/Source/Core/VideoBackends/Null/Render.cpp b/Source/Core/VideoBackends/Null/Render.cpp index b1a88f7a80..c589c8278f 100644 --- a/Source/Core/VideoBackends/Null/Render.cpp +++ b/Source/Core/VideoBackends/Null/Render.cpp @@ -4,6 +4,7 @@ #include "Common/Logging/Log.h" +#include "VideoBackends/Null/NullTexture.h" #include "VideoBackends/Null/Render.h" #include "VideoCommon/VideoConfig.h" @@ -21,6 +22,17 @@ Renderer::~Renderer() UpdateActiveConfig(); } +std::unique_ptr<AbstractTexture> Renderer::CreateTexture(const TextureConfig& config) +{ + return std::make_unique<NullTexture>(config); +} + +std::unique_ptr<AbstractStagingTexture> Renderer::CreateStagingTexture(StagingTextureType type, + const TextureConfig& config) +{ + return std::make_unique<NullStagingTexture>(type, config); +} + void Renderer::RenderText(const std::string& text, int left, int top, u32 color) { NOTICE_LOG(VIDEO, "RenderText: %s", text.c_str()); diff --git a/Source/Core/VideoBackends/Null/Render.h b/Source/Core/VideoBackends/Null/Render.h index 2a21918f81..32b1d560e5 100644 --- a/Source/Core/VideoBackends/Null/Render.h +++ b/Source/Core/VideoBackends/Null/Render.h @@ -14,6 +14,10 @@ public: Renderer(); ~Renderer() override; + std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config) override; + std::unique_ptr<AbstractStagingTexture> + CreateStagingTexture(StagingTextureType type, const TextureConfig& config) override; + void RenderText(const std::string& pstr, int left, int top, u32 color) override; u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override { return 0; } void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {} diff --git a/Source/Core/VideoBackends/Null/TextureCache.h b/Source/Core/VideoBackends/Null/TextureCache.h index 2b3283c056..6f09108392 100644 --- a/Source/Core/VideoBackends/Null/TextureCache.h +++ b/Source/Core/VideoBackends/Null/TextureCache.h @@ -35,12 +35,6 @@ public: bool scale_by_half, unsigned int cbuf_id, const float* colmat) override { } - -private: - std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config) override - { - return std::make_unique<NullTexture>(config); - } }; } // Null name space |
