1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

rsx: Add a comment explaining the barycentric interpolation change

This commit is contained in:
kd-11 2023-05-02 19:05:52 +03:00 committed by kd-11
parent 08e7a23121
commit 579a6c9311

View File

@ -1250,6 +1250,8 @@ namespace glsl
"\n"
"vec4 _interpolate_varying3(const in vec4[3] v)\n"
"{\n"
// In the corner case where v[0] == v[1] == v[2], this algorithm generates a perfect result vs alternatives that use weighted multiply + add.
// Due to the finite precision of floating point arithmetic, adding together the result of different multiplies yeields a slightly inaccurate result which breaks things.
" const vec4 p10 = v[1] - v[0];\n"
" const vec4 p20 = v[2] - v[0];\n"
" return v[0] + p10 * $gl_BaryCoord.y + p20 * $gl_BaryCoord.z;\n"