mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
09e7a5843f
Currently only Bilinear (Sharp).
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include "gpu.h"
|
|
#include "gpu_sw_backend.h"
|
|
|
|
#include "util/gpu_device.h"
|
|
|
|
#include "common/heap_array.h"
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace Threading {
|
|
class Thread;
|
|
}
|
|
|
|
class GPUTexture;
|
|
|
|
class GPU_SW final : public GPU
|
|
{
|
|
public:
|
|
GPU_SW();
|
|
~GPU_SW() override;
|
|
|
|
ALWAYS_INLINE const GPU_SW_Backend& GetBackend() const { return m_backend; }
|
|
|
|
const Threading::Thread* GetSWThread() const override;
|
|
bool IsHardwareRenderer() const override;
|
|
|
|
bool Initialize() override;
|
|
bool DoState(StateWrapper& sw, GPUTexture** host_texture, bool update_display) override;
|
|
void Reset(bool clear_vram) override;
|
|
void UpdateSettings(const Settings& old_settings) override;
|
|
|
|
protected:
|
|
void ReadVRAM(u32 x, u32 y, u32 width, u32 height) override;
|
|
void FillVRAM(u32 x, u32 y, u32 width, u32 height, u32 color) override;
|
|
void UpdateVRAM(u32 x, u32 y, u32 width, u32 height, const void* data, bool set_mask, bool check_mask) override;
|
|
void CopyVRAM(u32 src_x, u32 src_y, u32 dst_x, u32 dst_y, u32 width, u32 height) override;
|
|
|
|
template<GPUTexture::Format display_format>
|
|
void CopyOut15Bit(u32 src_x, u32 src_y, u32 width, u32 height, u32 field, bool interlaced, bool interleaved);
|
|
void CopyOut15Bit(GPUTexture::Format display_format, u32 src_x, u32 src_y, u32 width, u32 height, u32 field,
|
|
bool interlaced, bool interleaved);
|
|
|
|
template<GPUTexture::Format display_format>
|
|
void CopyOut24Bit(u32 src_x, u32 src_y, u32 skip_x, u32 width, u32 height, u32 field, bool interlaced,
|
|
bool interleaved);
|
|
void CopyOut24Bit(GPUTexture::Format display_format, u32 src_x, u32 src_y, u32 skip_x, u32 width, u32 height,
|
|
u32 field, bool interlaced, bool interleaved);
|
|
|
|
void ClearDisplay() override;
|
|
void UpdateDisplay() override;
|
|
|
|
void DispatchRenderCommand() override;
|
|
|
|
void FillBackendCommandParameters(GPUBackendCommand* cmd) const;
|
|
void FillDrawCommand(GPUBackendDrawCommand* cmd, GPURenderCommand rc) const;
|
|
|
|
GPUTexture* GetDisplayTexture(u32 width, u32 height, GPUTexture::Format format);
|
|
|
|
FixedHeapArray<u8, GPU_MAX_DISPLAY_WIDTH * GPU_MAX_DISPLAY_HEIGHT * sizeof(u32)> m_display_texture_buffer;
|
|
GPUTexture::Format m_16bit_display_format = GPUTexture::Format::RGB565;
|
|
GPUTexture::Format m_24bit_display_format = GPUTexture::Format::RGBA8;
|
|
std::unique_ptr<GPUTexture> m_private_display_texture; // TODO: Move to base.
|
|
|
|
GPU_SW_Backend m_backend;
|
|
};
|