Skip to content

Commit

Permalink
nv2a: Adjust NaN handling to be similar to HW
Browse files Browse the repository at this point in the history
  • Loading branch information
abaire committed Jun 27, 2022
1 parent db389b1 commit e272865
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 20 deletions.
35 changes: 26 additions & 9 deletions hw/xbox/nv2a/shaders.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,23 @@ GLSL_DEFINE(texMat3, GLSL_C_MAT4(NV_IGRAPH_XF_XFCTX_T3MAT))
i, i);
}
}
mstring_append(header,
"/* Converts the input to vec4, pads with last component */\n"
"vec4 _in(float v) { return vec4(v); }\n"
"vec4 _in(vec2 v) { return v.xyyy; }\n"
"vec4 _in(vec3 v) { return v.xyzz; }\n"
"vec4 _in(vec4 v) { return v.xyzw; }\n"
"#define FixNaN(src, mask) _FixNaN(_in(src)).mask\n"
"vec4 _FixNaN(vec4 src)\n"
"{\n"
" bvec4 nans = isnan(src);\n"
" if (!any(nans)) {\n"
" return src;\n"
" }\n"
" ivec4 signs = floatBitsToInt(src);\n"
" vec4 negative = vec4(lessThan(signs, ivec4(0)));"
" return mix(src, mix(vec4(1.0), vec4(0.0), negative), vec4(nans));\n"
"}\n");
mstring_append(header, "\n");

MString *body = mstring_from_str("void main() {\n");
Expand Down Expand Up @@ -947,15 +964,15 @@ GLSL_DEFINE(texMat3, GLSL_C_MAT4(NV_IGRAPH_XF_XFCTX_T3MAT))

/* Set outputs */
mstring_append(body, "\n"
" vtxD0 = clamp(oD0, 0.0, 1.0) * vtx_inv_w;\n"
" vtxD1 = clamp(oD1, 0.0, 1.0) * vtx_inv_w;\n"
" vtxB0 = clamp(oB0, 0.0, 1.0) * vtx_inv_w;\n"
" vtxB1 = clamp(oB1, 0.0, 1.0) * vtx_inv_w;\n"
" vtxFog = oFog.x * vtx_inv_w;\n"
" vtxT0 = oT0 * vtx_inv_w;\n"
" vtxT1 = oT1 * vtx_inv_w;\n"
" vtxT2 = oT2 * vtx_inv_w;\n"
" vtxT3 = oT3 * vtx_inv_w;\n"
" vtx.D0 = clamp(FixNaN(oD0, xyzw), 0.0, 1.0) * vtx_inv_w;\n"
" vtx.D1 = clamp(FixNaN(oD1, xyzw), 0.0, 1.0) * vtx_inv_w;\n"
" vtx.B0 = clamp(FixNaN(oB0, xyzw), 0.0, 1.0) * vtx_inv_w;\n"
" vtx.B1 = clamp(FixNaN(oB1, xyzw), 0.0, 1.0) * vtx_inv_w;\n"
" vtx.Fog = FixNaN(oFog, x) * vtx_inv_w;\n"
" vtx.T0 = FixNaN(oT0, xyzw) * vtx_inv_w;\n"
" vtx.T1 = FixNaN(oT1, xyzw) * vtx_inv_w;\n"
" vtx.T2 = FixNaN(oT2, xyzw) * vtx_inv_w;\n"
" vtx.T3 = FixNaN(oT3, xyzw) * vtx_inv_w;\n"
" gl_Position = oPos;\n"
" gl_PointSize = oPts.x;\n"
"\n"
Expand Down
11 changes: 0 additions & 11 deletions hw/xbox/nv2a/vsh.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,17 +614,6 @@ static const char* vsh_header =
* https://www.opengl.org/registry/specs/NV/vertex_program1_1.txt
*/
"\n"
//QQQ #ifdef NICE_CODE
"/* Converts the input to vec4, pads with last component */\n"
"vec4 _in(float v) { return vec4(v); }\n"
"vec4 _in(vec2 v) { return v.xyyy; }\n"
"vec4 _in(vec3 v) { return v.xyzz; }\n"
"vec4 _in(vec4 v) { return v.xyzw; }\n"
//#else
// "/* Make sure input is always a vec4 */\n"
// "#define _in(v) vec4(v)\n"
//#endif
"\n"
"#define INFINITY (1.0 / 0.0)\n"
"\n"
"#define MOV(dest, mask, src) dest.mask = _MOV(_in(src)).mask\n"
Expand Down

0 comments on commit e272865

Please sign in to comment.