diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index 0833ece74..4a423d3aa 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -729,7 +729,6 @@ void GPU_HW::DestroyBuffers() m_vram_update_depth_framebuffer.reset(); m_vram_framebuffer.reset(); m_vram_read_texture.reset(); - m_vram_depth_view.reset(); m_vram_depth_texture.reset(); m_vram_texture.reset(); m_vram_readback_texture.reset(); diff --git a/src/core/gpu_hw.h b/src/core/gpu_hw.h index 73a595cce..4ab7943a4 100644 --- a/src/core/gpu_hw.h +++ b/src/core/gpu_hw.h @@ -208,7 +208,6 @@ private: std::unique_ptr m_vram_texture; std::unique_ptr m_vram_depth_texture; - std::unique_ptr m_vram_depth_view; std::unique_ptr m_vram_read_texture; std::unique_ptr m_vram_readback_texture; std::unique_ptr m_vram_replacement_texture;