diff options
author | Christoph Bill <[email protected]> | 2007-05-09 18:24:06 +0000 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2007-05-09 18:24:06 +0000 |
commit | a6aa1f80168a8134286040920d804a8fc86773ce (patch) | |
tree | 7f62326c4a6084ea9d5eb3835809cacc3ddf6392 /src/mesa/drivers/dri/r300/r300_tex.c | |
parent | 967c2d220d795d9f16dbba413d57cb9dcd58ae6d (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.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 e8005163617..71673e857b8 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]); } /** |