summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/r300_tex.c
diff options
context:
space:
mode:
authorChristoph Bill <egore@gmx.de>2007-05-09 18:24:06 +0000
committerOliver McFadden <z3ro.geek@gmail.com>2007-05-09 18:24:06 +0000
commita6aa1f80168a8134286040920d804a8fc86773ce (patch)
tree7f62326c4a6084ea9d5eb3835809cacc3ddf6392 /src/mesa/drivers/dri/r300/r300_tex.c
parent967c2d220d795d9f16dbba413d57cb9dcd58ae6d (diff)
r300: Added some Doxygen comments.
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 e800516361..71673e857b 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 = r300PackColor(4, c[0], c[1], c[2], c[3]);
+ t->pp_border_color = PACK_COLOR_8888(c[0], c[1], c[2], c[3]);
}
/**