diff options
author | Rob Clark <[email protected]> | 2014-09-27 18:19:54 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-09-29 18:30:42 -0400 |
commit | 7e20c09d4ac22012a9d2697fb83e6815edb5a64d (patch) | |
tree | 386dd88f16ad1f25b1fc27c9e3c8dcc9965a782c /src | |
parent | c61133046ec079ead9a4f05a5eb06b0bbe10e838 (diff) |
freedreno/a3xx: fix border color order
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/freedreno/a3xx/fd3_emit.c | 9 |
1 files changed, 4 insertions, 5 deletions
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); |