From 915a1ed410f6ac0dd24ad7079a8c1d6eb4d46594 Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Thu, 16 Jul 2015 14:44:08 +0200 Subject: [PATCH] Style + FIXME for assert --- hw/xbox/nv2a.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hw/xbox/nv2a.c b/hw/xbox/nv2a.c index 44d7d71553..c84362b040 100644 --- a/hw/xbox/nv2a.c +++ b/hw/xbox/nv2a.c @@ -2697,8 +2697,9 @@ static ShaderBinding* generate_shaders(const ShaderState state) if (mix) { /* Tweening */ if (count == 2) { - qstring_append(vertex_shader_code, "tPosition += mix(position * modelViewMat1," - " position * modelViewMat0, weight.x);\n"); + qstring_append(vertex_shader_code, + "tPosition += mix(position * modelViewMat1," + " position * modelViewMat0, weight.x);\n"); } else { /* FIXME: Not sure how blend weights are calculated */ @@ -2713,6 +2714,7 @@ static ShaderBinding* generate_shaders(const ShaderState state) qstring_append_fmt(vertex_shader_code, "tNormal += (invModelViewMat%d * vec4(normal, 0.0) * weight.%c).xyz;\n", i, c); } + assert(false); /* FIXME: Untested */ } }