summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/a2xx
diff options
context:
space:
mode:
authorRoland Scheidegger <[email protected]>2014-04-23 20:00:03 +0200
committerRoland Scheidegger <[email protected]>2014-04-25 19:29:30 +0200
commitfa4082320acaf0a1a22ae56144eef94b2997818d (patch)
tree3b18c83012d42ce24c248e23e4ee3cf239c6153c /src/gallium/drivers/freedreno/a2xx
parent2f65f61beac3a45fdf27bf25d7b13cd1fa2bbb8c (diff)
gallium/util: use ui[4] instead of ui in union util_color
util_color often merely represents a collection of bytes, however it is inconvenient if those bytes can only be accessed as floats/doubles for int formats exceeding 32bits. (Note that since rgba8 formats use one uint, not 4 bytes, hence the byte and short member were left as is.)
Diffstat (limited to 'src/gallium/drivers/freedreno/a2xx')
-rw-r--r--src/gallium/drivers/freedreno/a2xx/fd2_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_draw.c b/src/gallium/drivers/freedreno/a2xx/fd2_draw.c
index d6e42b668a8..77fbf1af224 100644
--- a/src/gallium/drivers/freedreno/a2xx/fd2_draw.c
+++ b/src/gallium/drivers/freedreno/a2xx/fd2_draw.c
@@ -123,7 +123,7 @@ pack_rgba(enum pipe_format format, const float *rgba)
{
union util_color uc;
util_pack_color(rgba, format, &uc);
- return uc.ui;
+ return uc.ui[0];
}
static void