2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2018-10-03 15:03:26 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-10-09 20:50:36 +02:00
|
|
|
|
|
|
|
#include "VideoCommon/RenderBase.h"
|
|
|
|
|
2018-10-03 15:03:26 +02:00
|
|
|
class SWOGLWindow;
|
|
|
|
|
2019-02-15 02:59:50 +01:00
|
|
|
namespace SW
|
|
|
|
{
|
|
|
|
class SWRenderer final : public Renderer
|
2013-11-16 05:07:08 +01:00
|
|
|
{
|
2015-10-09 20:50:36 +02:00
|
|
|
public:
|
2018-10-03 15:03:26 +02:00
|
|
|
SWRenderer(std::unique_ptr<SWOGLWindow> window);
|
2014-03-29 11:05:44 +01:00
|
|
|
|
2018-10-03 15:03:13 +02:00
|
|
|
bool IsHeadless() const override;
|
|
|
|
|
2017-09-30 08:25:36 +02:00
|
|
|
std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config) override;
|
2017-10-21 16:49:40 +02:00
|
|
|
std::unique_ptr<AbstractStagingTexture>
|
|
|
|
CreateStagingTexture(StagingTextureType type, const TextureConfig& config) override;
|
2018-01-21 11:22:45 +01:00
|
|
|
std::unique_ptr<AbstractFramebuffer>
|
2019-02-15 02:59:50 +01:00
|
|
|
CreateFramebuffer(AbstractTexture* color_attachment, AbstractTexture* depth_attachment) override;
|
2017-09-30 08:25:36 +02:00
|
|
|
|
2021-05-23 04:58:27 +02:00
|
|
|
void BindBackbuffer(const ClearColor& clear_color = {}) override;
|
|
|
|
|
2019-05-30 09:07:40 +02:00
|
|
|
std::unique_ptr<AbstractShader> CreateShaderFromSource(ShaderStage stage,
|
|
|
|
std::string_view source) override;
|
2017-09-08 11:42:56 +02:00
|
|
|
std::unique_ptr<AbstractShader> CreateShaderFromBinary(ShaderStage stage, const void* data,
|
|
|
|
size_t length) override;
|
2019-02-15 02:59:50 +01:00
|
|
|
std::unique_ptr<NativeVertexFormat>
|
|
|
|
CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) override;
|
2019-04-15 13:55:26 +02:00
|
|
|
std::unique_ptr<AbstractPipeline> CreatePipeline(const AbstractPipelineConfig& config,
|
|
|
|
const void* cache_data = nullptr,
|
|
|
|
size_t cache_data_length = 0) override;
|
2017-09-08 11:42:56 +02:00
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
|
2017-07-30 21:56:12 +02:00
|
|
|
void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {}
|
2021-05-22 03:54:19 +02:00
|
|
|
u16 BBoxReadImpl(int index) override;
|
|
|
|
void BBoxWriteImpl(int index, u16 value) override;
|
2015-10-09 20:50:36 +02:00
|
|
|
|
2019-04-28 09:00:18 +02:00
|
|
|
void RenderXFBToScreen(const MathUtil::Rectangle<int>& target_rc,
|
|
|
|
const AbstractTexture* source_texture,
|
|
|
|
const MathUtil::Rectangle<int>& source_rc) override;
|
2015-10-09 20:50:36 +02:00
|
|
|
|
2019-04-15 16:47:46 +02:00
|
|
|
void ClearScreen(const MathUtil::Rectangle<int>& rc, bool colorEnable, bool alphaEnable,
|
|
|
|
bool zEnable, u32 color, u32 z) override;
|
2015-10-09 20:50:36 +02:00
|
|
|
|
2019-02-15 02:59:50 +01:00
|
|
|
void ReinterpretPixelData(EFBReinterpretType convtype) override {}
|
|
|
|
|
|
|
|
void ScaleTexture(AbstractFramebuffer* dst_framebuffer, const MathUtil::Rectangle<int>& dst_rect,
|
|
|
|
const AbstractTexture* src_texture,
|
|
|
|
const MathUtil::Rectangle<int>& src_rect) override;
|
2018-10-03 15:03:26 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<SWOGLWindow> m_window;
|
2015-10-09 20:50:36 +02:00
|
|
|
};
|
2019-02-15 02:59:50 +01:00
|
|
|
} // namespace SW
|