From 97be3f598683721bc43e354d7804221152e21f02 Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Thu, 10 Sep 2015 17:52:48 +0200 Subject: [PATCH] Set initial value of oFog.x to 1.0 --- hw/xbox/nv2a_shaders.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/hw/xbox/nv2a_shaders.c b/hw/xbox/nv2a_shaders.c index 4658207122..cc36b36b53 100644 --- a/hw/xbox/nv2a_shaders.c +++ b/hw/xbox/nv2a_shaders.c @@ -588,7 +588,21 @@ static QString *generate_vertex_shader(const ShaderState state, "vec4 oB0 = vec4(0.0,0.0,0.0,1.0);\n" "vec4 oB1 = vec4(0.0,0.0,0.0,1.0);\n" "vec4 oPts = vec4(0.0,0.0,0.0,1.0);\n" - "vec4 oFog = vec4(0.0,0.0,0.0,1.0);\n" + /* FIXME: NV_vertex_program says: "FOGC is the transformed vertex's fog + * coordinate. The register's first floating-point component is interpolated + * across the assembled primitive during rasterization and used as the fog + * distance to compute per-fragment the fog factor when fog is enabled. + * However, if both fog and vertex program mode are enabled, but the FOGC + * vertex result register is not written, the fog factor is overridden to + * 1.0. The register's other three components are ignored." + * + * That probably means it will read back as vec4(0.0, 0.0, 0.0, 1.0) but + * will be set to 1.0 AFTER the VP if it was never written? + * We should test on real hardware.. + * + * We'll force 1.0 for oFog.x for now. + */ + "vec4 oFog = vec4(1.0,0.0,0.0,1.0);\n" "vec4 oT0 = vec4(0.0,0.0,0.0,1.0);\n" "vec4 oT1 = vec4(0.0,0.0,0.0,1.0);\n" "vec4 oT2 = vec4(0.0,0.0,0.0,1.0);\n"