From c43ddaec4f765bddd2775a2d64571a32c52c6ad8 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Tue, 26 May 2015 17:03:13 +0200 Subject: [PATCH] gsdx: add Castlevania hack explanation --- plugins/GSdx/GSState.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plugins/GSdx/GSState.cpp b/plugins/GSdx/GSState.cpp index 16fbd40b49..c55bdf73f3 100644 --- a/plugins/GSdx/GSState.cpp +++ b/plugins/GSdx/GSState.cpp @@ -4314,6 +4314,18 @@ bool GSC_Castlevania(const GSFrameInfo& fi, int& skip) { if(skip == 0) { + // This hack removes the shadows and globally darker image + // I think there are 2 issues on GSdx + // + // 1/ potential not correctly supported colclip. + // + // 2/ use of a 32 bits format to emulate a 16 bit formats + // For example, if you blend 64 time the value 4 on a dark destination pixels + // + // FMT32: 4*64 = 256 <= white pixels + // + // FMT16: output of blending will always be 0 because the 3 lsb of color is dropped. + // Therefore the pixel remains dark !!! if(fi.TME && fi.FBP == 0 && fi.TBP0 && fi.TPSM == 10 && fi.FBMSK == 0xFFFFFF) { skip = 2;