From: Rob Clark Date: Sat, 27 Sep 2014 22:19:54 +0000 (-0400) Subject: freedreno/a3xx: fix border color order X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e20c09d4ac22012a9d2697fb83e6815edb5a64d;p=mesa.git freedreno/a3xx: fix border color order Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_emit.c b/src/gallium/drivers/freedreno/a3xx/fd3_emit.c index c48381c9507..430339ae47d 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_emit.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_emit.c @@ -194,11 +194,10 @@ emit_textures(struct fd_context *ctx, struct fd_ringbuffer *ring, (BORDERCOLOR_SIZE * tex_off[sb]) + (BORDERCOLOR_SIZE * i)); - /* TODO not quite sure if bcolor is pre or post swizzle: */ - for (j = 0; j < 4; j++) { - bcolor[j] = - util_float_to_half(sampler->base.border_color.f[j]); - } + bcolor[0] = util_float_to_half(sampler->base.border_color.f[2]); + bcolor[1] = util_float_to_half(sampler->base.border_color.f[1]); + bcolor[2] = util_float_to_half(sampler->base.border_color.f[0]); + bcolor[3] = util_float_to_half(sampler->base.border_color.f[3]); OUT_RING(ring, sampler->texsamp0); OUT_RING(ring, sampler->texsamp1);