From 8a43da637a3c0801da88266833f51fff8530ff0a Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Thu, 16 Jul 2015 14:41:30 +0200 Subject: [PATCH] Fix some parts of skinning --- hw/xbox/nv2a.c | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/hw/xbox/nv2a.c b/hw/xbox/nv2a.c index 0b7954c5fa..44d7d71553 100644 --- a/hw/xbox/nv2a.c +++ b/hw/xbox/nv2a.c @@ -2688,21 +2688,22 @@ 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 * modelViewMat0;\n"); + qstring_append(vertex_shader_code, "vec4 tPosition = position;\n"); + /* FIXME: Is the normal still transformed? */ qstring_append(vertex_shader_code, "vec3 tNormal = (invModelViewMat0 * vec4(normal, 0.0)).xyz;\n"); } else { qstring_append(vertex_shader_code, "vec4 tPosition = vec4(0.0);\n"); qstring_append(vertex_shader_code, "vec3 tNormal = vec3(0.0);\n"); if (mix) { /* Tweening */ - /* - This should *probably* be something like: - if (count == 2) { - pos = mix(position*modelViewMat0,position*modelViewMat1,weight.x) - } - Not sure about higher amount of matrices. - /* - assert(false); + if (count == 2) { + qstring_append(vertex_shader_code, "tPosition += mix(position * modelViewMat1," + " position * modelViewMat0, weight.x);\n"); + + } else { + /* FIXME: Not sure how blend weights are calculated */ + assert(false); + } } else { /* Individual matrices */ for (i = 0; i < count; i++) { @@ -2774,11 +2775,7 @@ static ShaderBinding* generate_shaders(const ShaderState state) } qstring_append(vertex_shader_code, -#if 0 -" gl_Position = position * modelViewMat0 * projectionMat;\n" -#else -" gl_Position = invViewport * (position * compositeMat);\n" -#endif +" gl_Position = invViewport * (tPosition * compositeMat);\n" /* temp hack: the composite matrix includes the view transform... */ //" gl_Position = position * compositeMat;\n" //" gl_Position.x = (gl_Position.x - 320.0) / 320.0;\n"