2023-01-27 02:07:05 +00:00
|
|
|
// Copyright 2023 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-02-03 13:02:17 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
#include "VideoCommon/AbstractGfx.h"
|
2014-02-03 13:02:17 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
class SWOGLWindow;
|
2021-06-09 11:42:21 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
namespace SW
|
2014-02-03 13:02:17 +00:00
|
|
|
{
|
2023-01-27 02:07:05 +00:00
|
|
|
class SWGfx final : public AbstractGfx
|
2014-02-03 13:02:17 +00:00
|
|
|
{
|
|
|
|
public:
|
2023-01-27 02:07:05 +00:00
|
|
|
SWGfx(std::unique_ptr<SWOGLWindow> window);
|
2014-02-03 13:02:17 +00:00
|
|
|
|
2018-10-03 13:03:13 +00:00
|
|
|
bool IsHeadless() const override;
|
|
|
|
|
2021-08-28 05:30:05 +00:00
|
|
|
std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config,
|
|
|
|
std::string_view name) override;
|
2017-10-21 14:49:40 +00:00
|
|
|
std::unique_ptr<AbstractStagingTexture>
|
|
|
|
CreateStagingTexture(StagingTextureType type, const TextureConfig& config) override;
|
2018-01-21 10:22:45 +00:00
|
|
|
std::unique_ptr<AbstractFramebuffer>
|
2019-02-15 01:59:50 +00:00
|
|
|
CreateFramebuffer(AbstractTexture* color_attachment, AbstractTexture* depth_attachment) override;
|
2017-09-30 06:25:36 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
void BindBackbuffer(const ClearColor& clear_color = {}) override;
|
|
|
|
|
2021-08-28 05:30:05 +00:00
|
|
|
std::unique_ptr<AbstractShader> CreateShaderFromSource(ShaderStage stage, std::string_view source,
|
|
|
|
std::string_view name) override;
|
2017-09-08 09:42:56 +00:00
|
|
|
std::unique_ptr<AbstractShader> CreateShaderFromBinary(ShaderStage stage, const void* data,
|
2021-08-28 05:30:05 +00:00
|
|
|
size_t length,
|
|
|
|
std::string_view name) override;
|
2019-02-15 01:59:50 +00:00
|
|
|
std::unique_ptr<NativeVertexFormat>
|
|
|
|
CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) override;
|
2019-04-15 11:55:26 +00:00
|
|
|
std::unique_ptr<AbstractPipeline> CreatePipeline(const AbstractPipelineConfig& config,
|
|
|
|
const void* cache_data = nullptr,
|
|
|
|
size_t cache_data_length = 0) override;
|
2017-09-08 09:42:56 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
void ShowImage(const AbstractTexture* source_texture,
|
|
|
|
const MathUtil::Rectangle<int>& source_rc) override;
|
|
|
|
|
|
|
|
void ScaleTexture(AbstractFramebuffer* dst_framebuffer, const MathUtil::Rectangle<int>& dst_rect,
|
|
|
|
const AbstractTexture* src_texture,
|
|
|
|
const MathUtil::Rectangle<int>& src_rect) override;
|
2014-02-03 13:02:17 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
void SetScissorRect(const MathUtil::Rectangle<int>& rc) override;
|
2014-02-03 13:02:17 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
void ClearRegion(const MathUtil::Rectangle<int>& rc, const MathUtil::Rectangle<int>& target_rc,
|
|
|
|
bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z) override;
|
2021-06-09 11:42:21 +00:00
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
private:
|
|
|
|
std::unique_ptr<SWOGLWindow> m_window;
|
2014-02-03 13:02:17 +00:00
|
|
|
};
|
2023-01-27 02:07:05 +00:00
|
|
|
|
|
|
|
} // namespace SW
|