diff --git a/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h b/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h index dd726fdb..c118fb2f 100644 --- a/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h +++ b/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h @@ -2569,8 +2569,10 @@ namespace skyline::gpu::interconnect { // Depth/Stencil Render Target Setup auto depthRenderTargetView{GetDepthRenderTarget()}; std::optional> depthTargetLock; - if (depthRenderTargetView) + if (depthRenderTargetView) { depthTargetLock.emplace(*depthRenderTargetView); + executor.AttachTexture(depthRenderTargetView); + } // Draw Persistent Storage struct DrawStorage {