diff options
author | Brian Paul <[email protected]> | 2001-07-14 17:53:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-07-14 17:53:04 +0000 |
commit | 96385fa15569e25cd0977e678c0ff3bdab6ef316 (patch) | |
tree | 64906f361d7fca6abb6cdd96b50439ccbce945d6 /src/mesa/drivers | |
parent | 274fc30d31803a1c73d7d05e041e71e6b683229e (diff) |
more work on float colors (still not finished)
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/osmesa/osmesa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/osmesa/osmesa.c b/src/mesa/drivers/osmesa/osmesa.c index c1549fdaeed..227b889f561 100644 --- a/src/mesa/drivers/osmesa/osmesa.c +++ b/src/mesa/drivers/osmesa/osmesa.c @@ -1,4 +1,4 @@ -/* $Id: osmesa.c,v 1.62 2001/07/13 20:07:37 brianp Exp $ */ +/* $Id: osmesa.c,v 1.63 2001/07/14 17:53:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1809,9 +1809,9 @@ static void smooth_rgba_z_triangle( GLcontext *ctx, for (i = 0; i < span.count; i++, img += 4) { \ const GLdepth z = FixedToDepth(span.z); \ if (z < zRow[i]) { \ - PACK_RGBA(img, FixedToInt(span.red), \ - FixedToInt(span.green), FixedToInt(span.blue), \ - FixedToInt(span.alpha)); \ + PACK_RGBA(img, FixedToChan(span.red), \ + FixedToChan(span.green), FixedToChan(span.blue), \ + FixedToChan(span.alpha)); \ zRow[i] = z; \ } \ span.red += span.redStep; \ |