mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
87 lines
2.6 KiB
C++
87 lines
2.6 KiB
C++
#pragma once
|
|
#include "common/gl/program.h"
|
|
#include "common/gl/stream_buffer.h"
|
|
#include "common/gl/texture.h"
|
|
#include "glad.h"
|
|
#include "gpu_hw.h"
|
|
#include <array>
|
|
#include <memory>
|
|
#include <tuple>
|
|
|
|
class GPU_HW_OpenGL : public GPU_HW
|
|
{
|
|
public:
|
|
GPU_HW_OpenGL();
|
|
~GPU_HW_OpenGL() override;
|
|
|
|
bool Initialize(HostDisplay* host_display, System* system, DMA* dma, InterruptController* interrupt_controller,
|
|
Timers* timers) override;
|
|
void Reset() override;
|
|
|
|
void ResetGraphicsAPIState() override;
|
|
void RestoreGraphicsAPIState() override;
|
|
void UpdateSettings() override;
|
|
|
|
protected:
|
|
void UpdateDisplay() override;
|
|
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) override;
|
|
void CopyVRAM(u32 src_x, u32 src_y, u32 dst_x, u32 dst_y, u32 width, u32 height) override;
|
|
void FlushRender() override;
|
|
void MapBatchVertexPointer(u32 required_vertices) override;
|
|
void UpdateVRAMReadTexture() override;
|
|
|
|
private:
|
|
struct GLStats
|
|
{
|
|
u32 num_batches;
|
|
u32 num_vertices;
|
|
u32 num_vram_reads;
|
|
u32 num_vram_writes;
|
|
u32 num_vram_read_texture_updates;
|
|
u32 num_uniform_buffer_updates;
|
|
};
|
|
|
|
std::tuple<s32, s32> ConvertToFramebufferCoordinates(s32 x, s32 y);
|
|
|
|
void SetCapabilities(HostDisplay* host_display);
|
|
bool CreateFramebuffer();
|
|
void ClearFramebuffer();
|
|
|
|
bool CreateVertexBuffer();
|
|
bool CreateUniformBuffer();
|
|
bool CreateTextureBuffer();
|
|
|
|
bool CompilePrograms();
|
|
void SetDrawState(BatchRenderMode render_mode);
|
|
void SetScissorFromDrawingArea();
|
|
void UploadUniformBlock(const void* data, u32 data_size);
|
|
|
|
// downsample texture - used for readbacks at >1xIR.
|
|
GL::Texture m_vram_texture;
|
|
GL::Texture m_vram_read_texture;
|
|
GL::Texture m_vram_encoding_texture;
|
|
GL::Texture m_display_texture;
|
|
|
|
std::unique_ptr<GL::StreamBuffer> m_vertex_stream_buffer;
|
|
GLuint m_vao_id = 0;
|
|
GLuint m_attributeless_vao_id = 0;
|
|
|
|
std::unique_ptr<GL::StreamBuffer> m_uniform_stream_buffer;
|
|
|
|
std::unique_ptr<GL::StreamBuffer> m_texture_stream_buffer;
|
|
GLuint m_texture_buffer_r16ui_texture = 0;
|
|
|
|
std::array<std::array<std::array<GL::Program, 2>, 9>, 4> m_render_programs; // [render_mode][texture_mode][dithering]
|
|
std::array<std::array<GL::Program, 2>, 2> m_display_programs; // [depth_24][interlaced]
|
|
GL::Program m_vram_read_program;
|
|
GL::Program m_vram_write_program;
|
|
|
|
u32 m_uniform_buffer_alignment = 1;
|
|
u32 m_max_texture_buffer_size = 0;
|
|
|
|
bool m_is_gles = false;
|
|
bool m_supports_texture_buffer = false;
|
|
};
|