From 8c445b5c690095d4ce025dd26a90535613dc1064 Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Fri, 17 Jul 2015 02:28:50 +0200 Subject: [PATCH] Fix Texgen by doing skinning fixup later --- hw/xbox/nv2a.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hw/xbox/nv2a.c b/hw/xbox/nv2a.c index 8c6d7df703..d0c0b6c352 100644 --- a/hw/xbox/nv2a.c +++ b/hw/xbox/nv2a.c @@ -2682,7 +2682,7 @@ static ShaderBinding* generate_shaders(const ShaderState state) qstring_append_fmt(vertex_shader_code, "/* Skinning mode %d */\n", state.skinning); if (count == 0) { - qstring_append(vertex_shader_code, "vec4 tPosition = position;\n"); + qstring_append(vertex_shader_code, "vec4 tPosition = position * modelViewMat0;\n"); /* FIXME: Is the normal still transformed? */ qstring_append(vertex_shader_code, "vec3 tNormal = (vec4(normal, 0.0) * invModelViewMat0).xyz;\n"); } else { @@ -2771,6 +2771,11 @@ static ShaderBinding* generate_shaders(const ShaderState state) } } + /* If skinning is off the composite matrix already includes the MV matrix */ + if (state.skinning == SKINNING_OFF) { + qstring_append(vertex_shader_code, "tPosition = position;\n"); + } + qstring_append(vertex_shader_code, " gl_Position = invViewport * (tPosition * compositeMat);\n" /* temp hack: the composite matrix includes the view transform... */