#pragma once #include "common/d3d11/staging_texture.h" #include "common/d3d11/stream_buffer.h" #include "common/d3d11/texture.h" #include "gpu_hw.h" #include #include #include #include #include class GPU_HW_D3D11 : public GPU_HW { public: template using ComPtr = Microsoft::WRL::ComPtr; GPU_HW_D3D11(); ~GPU_HW_D3D11() 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; void DrawRendererStatsWindow() override; protected: void UpdateDisplay() override; void UpdateDrawingArea() override; void ReadVRAM(u32 x, u32 y, u32 width, u32 height, void* buffer) 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 InvalidateVRAMReadCache() override; void MapBatchVertexPointer(u32 required_vertices) 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; }; void SetCapabilities(); bool CreateFramebuffer(); void ClearFramebuffer(); void DestroyFramebuffer(); void UpdateVRAMReadTexture(); bool CreateVertexBuffer(); bool CreateUniformBuffer(); bool CreateTextureBuffer(); bool CreateBatchInputLayout(); bool CreateStateObjects(); bool CompileShaders(); void SetDrawState(BatchRenderMode render_mode); void UploadUniformBlock(const void* data, u32 data_size); void SetViewport(u32 x, u32 y, u32 width, u32 height); void SetScissor(u32 x, u32 y, u32 width, u32 height); void SetViewportAndScissor(u32 x, u32 y, u32 width, u32 height); /// Blits from src to dst, downscaling or upscaling in the process. void BlitTexture(ID3D11RenderTargetView* dst, u32 dst_x, u32 dst_y, u32 dst_width, u32 dst_height, ID3D11ShaderResourceView* src, u32 src_x, u32 src_y, u32 src_width, u32 src_height, u32 src_texture_width, u32 src_texture_height, bool linear_filter); void DrawUtilityShader(ID3D11PixelShader* shader, const void* uniforms, u32 uniforms_size); ComPtr m_device; ComPtr m_context; // downsample texture - used for readbacks at >1xIR. D3D11::Texture m_vram_texture; D3D11::Texture m_vram_read_texture; D3D11::Texture m_vram_downsample_texture; D3D11::Texture m_display_texture; D3D11::StreamBuffer m_vertex_stream_buffer; D3D11::StreamBuffer m_uniform_stream_buffer; D3D11::StreamBuffer m_texture_stream_buffer; ComPtr m_texture_stream_buffer_srv_r16ui; ComPtr m_cull_none_rasterizer_state; ComPtr m_depth_disabled_state; ComPtr m_blend_disabled_state; ComPtr m_point_sampler_state; ComPtr m_linear_sampler_state; std::array, 5> m_batch_blend_states; // [transparency_mode] ComPtr m_batch_input_layout; std::array, 2> m_batch_vertex_shaders; // [textured] std::array, 2>, 9>, 4> m_batch_pixel_shaders; // [render_mode][texture_mode][dithering] ComPtr m_screen_quad_vertex_shader; ComPtr m_copy_pixel_shader; ComPtr m_fill_pixel_shader; ComPtr m_vram_write_pixel_shader; std::array, 2>, 2> m_display_pixel_shaders; // [depth_24][interlaced] GLStats m_stats = {}; GLStats m_last_stats = {}; bool m_vram_read_texture_dirty = true; bool m_drawing_area_changed = true; bool m_show_renderer_statistics = false; };