diff options
author | Dave Airlie <[email protected]> | 2007-11-03 18:58:46 +1100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2007-11-03 18:59:23 +1100 |
commit | 59efbb412fa0552a104283e7f4c1d721f42c6148 (patch) | |
tree | f775f3cf0f41b37a4638564c450331446d5a118c /src/mesa/drivers | |
parent | 351a83163a9536dc91014cc59bb406a10cd26df4 (diff) |
r300: fix texwrap border color
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_tex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_tex.c b/src/mesa/drivers/dri/r300/r300_tex.c index adf69a3c257..0b4acec0448 100644 --- a/src/mesa/drivers/dri/r300/r300_tex.c +++ b/src/mesa/drivers/dri/r300/r300_tex.c @@ -249,7 +249,7 @@ static void r300SetTexFilter(r300TexObjPtr t, GLenum minf, GLenum magf) static void r300SetTexBorderColor(r300TexObjPtr t, GLubyte c[4]) { - t->pp_border_color = PACK_COLOR_8888(c[0], c[1], c[2], c[3]); + t->pp_border_color = PACK_COLOR_8888(c[3], c[0], c[1], c[2]); } /** |