From ae51ce23499e73aea72b5de1a484a1e143e84dc3 Mon Sep 17 00:00:00 2001 From: Vincent Lejeune Date: Sun, 20 Sep 2015 00:02:56 +0200 Subject: [PATCH] d3d12: Fix a comment --- rpcs3/Emu/RSX/D3D12/D3D12GSRender.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/rpcs3/Emu/RSX/D3D12/D3D12GSRender.h b/rpcs3/Emu/RSX/D3D12/D3D12GSRender.h index 8a46842d30..f24ca7c19c 100644 --- a/rpcs3/Emu/RSX/D3D12/D3D12GSRender.h +++ b/rpcs3/Emu/RSX/D3D12/D3D12GSRender.h @@ -34,9 +34,6 @@ * draw call use the same buffer, but the first one doesn't use all the attribute ; then the second one will use * the cached version and not have updated attributes. Same for texture, if format/size does change, the caching * system is ignoring it. - * - Fix vertex buffer in The Guided Paradox - * The vertex info in the guided paradox are wrong, leading to missing character parts ingame (like leg or torso). - * It's because some vertex position are incorrect. * - Improve sync between cell and RSX * A lot of optimisation can be gained from using Cell and RSX latency. Cell can't read RSX generated data without * synchronisation. We currently only cover semaphore sync, but there are more (like implicit sync at flip) that