diff options
author | Brian Paul <[email protected]> | 2001-01-05 21:28:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-01-05 21:28:31 +0000 |
commit | 8cbc573eae500aff6d121b2eef93fb00822622f1 (patch) | |
tree | b37f54734b0e44221cbdd70fa3aa3d0c9c8a39d3 /src/mesa/swrast/s_drawpix.c | |
parent | 2d7e25c9ffea6f8fb64d54c57bcd0ade5559bb35 (diff) |
Fixed bug in MinMagThresh computation.
Renamed gl_texture_pixels() to _swrast_texture_fragments()
Diffstat (limited to 'src/mesa/swrast/s_drawpix.c')
-rw-r--r-- | src/mesa/swrast/s_drawpix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index 63281b2f730..766749e811f 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -1,4 +1,4 @@ -/* $Id: s_drawpix.c,v 1.6 2001/01/03 15:59:30 brianp Exp $ */ +/* $Id: s_drawpix.c,v 1.7 2001/01/05 21:28:31 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -810,8 +810,8 @@ draw_rgba_pixels( GLcontext *ctx, GLint x, GLint y, if (ctx->Texture.Unit[unit]._ReallyEnabled) { _mesa_pixeltexgen(ctx, width, (const GLchan (*)[4]) rgba, s, t, r, q); - gl_texture_pixels(ctx, unit, width, s, t, r, NULL, - primary_rgba, rgba); + _swrast_texture_fragments(ctx, unit, width, s, t, r, NULL, + primary_rgba, rgba); } } } |