From 0351caf058ed06dc2b7f01b05887977c1161054f Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Fri, 4 Sep 2015 03:24:16 +0200 Subject: [PATCH] Avoid shader compilation bug if 'g' is RGB --- hw/xbox/nv2a_psh.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/xbox/nv2a_psh.c b/hw/xbox/nv2a_psh.c index c366a45127..637e59a134 100644 --- a/hw/xbox/nv2a_psh.c +++ b/hw/xbox/nv2a_psh.c @@ -513,7 +513,8 @@ static void add_final_stage_code(struct PixelShader *ps, struct FCInputInfo fina qstring_append_fmt(ps->code, "r0.rgb = %s + mix(vec3(%s), vec3(%s), vec3(%s));\n", qstring_get_str(d), qstring_get_str(c), qstring_get_str(b), qstring_get_str(a)); - qstring_append_fmt(ps->code, "r0.a = %s;\n", qstring_get_str(g)); + /* FIXME: Is .x correctly here? */ + qstring_append_fmt(ps->code, "r0.a = vec3(%s).x;\n", qstring_get_str(g)); QDECREF(a); QDECREF(b);