diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-14 07:16:47 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-14 07:17:06 +0200 |
commit | 04cb7ae6019402f1b53cea1beb5117d67628bce7 (patch) | |
tree | d6f74cf0bae4962298eba8c8a92512cb23761444 /src | |
parent | Merge pull request #904 from aroulin/y2r-narrowing-warning (diff) | |
parent | VideoCore: Implement the DOT3_RGB combiner (diff) | |
download | yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.tar yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.tar.gz yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.tar.bz2 yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.tar.lz yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.tar.xz yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.tar.zst yuzu-04cb7ae6019402f1b53cea1beb5117d67628bce7.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/pica.h | 1 | ||||
-rw-r--r-- | src/video_core/rasterizer.cpp | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 46a7b21dc..026b10a62 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -290,6 +290,7 @@ struct Regs { AddSigned = 3, Lerp = 4, Subtract = 5, + Dot3_RGB = 6, MultiplyThenAdd = 8, AddThenMultiply = 9, diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index c381c2bd9..a6b7997ce 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp @@ -641,7 +641,18 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0, result = (result * input[2].Cast<int>()) / 255; return result.Cast<u8>(); } - + case Operation::Dot3_RGB: + { + // Not fully accurate. + // Worst case scenario seems to yield a +/-3 error + // Some HW results indicate that the per-component computation can't have a higher precision than 1/256, + // while dot3_rgb( (0x80,g0,b0),(0x7F,g1,b1) ) and dot3_rgb( (0x80,g0,b0),(0x80,g1,b1) ) give different results + int result = ((input[0].r() * 2 - 255) * (input[1].r() * 2 - 255) + 128) / 256 + + ((input[0].g() * 2 - 255) * (input[1].g() * 2 - 255) + 128) / 256 + + ((input[0].b() * 2 - 255) * (input[1].b() * 2 - 255) + 128) / 256; + result = std::max(0, std::min(255, result)); + return { (u8)result, (u8)result, (u8)result }; + } default: LOG_ERROR(HW_GPU, "Unknown color combiner operation %d\n", (int)op); UNIMPLEMENTED(); |