summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/r300_tex.c
diff options
context:
space:
mode:
authorAapo Tahkola <aet@rasterburn.org>2005-02-19 16:30:56 +0000
committerAapo Tahkola <aet@rasterburn.org>2005-02-19 16:30:56 +0000
commit35bc4ac68062afeae17f96b8f4173a599cfc7f05 (patch)
tree6dd0824d71cd13a8bbad916259435fcafa141286 /src/mesa/drivers/dri/r300/r300_tex.c
parentff3ce3dd96376d61e245cb5c34d320128b8f95a8 (diff)
Minor fix to border and blend color.
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_tex.c')
-rw-r--r--src/mesa/drivers/dri/r300/r300_tex.c2
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 000b7be0b0..c3010d3ceb 100644
--- a/src/mesa/drivers/dri/r300/r300_tex.c
+++ b/src/mesa/drivers/dri/r300/r300_tex.c
@@ -267,7 +267,7 @@ static void r300SetTexFilter(r300TexObjPtr t, GLenum minf, GLenum magf)
static void r300SetTexBorderColor(r300TexObjPtr t, GLubyte c[4])
{
- t->pp_border_color = radeonPackColor(4, c[3], c[2], c[1], c[0]);
+ t->pp_border_color = r300PackColor(4, c[0], c[1], c[2], c[3]);
}
/**