diff options
author | Brian Paul <[email protected]> | 2005-12-14 03:04:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-12-14 03:04:58 +0000 |
commit | 1add059bd114f90e32c4b574be411d314eca6d90 (patch) | |
tree | 221908fd60a1aad54ba5ec27097e83cadbc3ad95 /src/mesa/swrast/s_drawpix.c | |
parent | c9797f6b76a5d34a4bdbab49ef8158ca861e0c01 (diff) |
Removed the GL_SGIX/SGIS_pixel_texture extensions. Same thing can be
done with fragment programs nowadays.
Diffstat (limited to 'src/mesa/swrast/s_drawpix.c')
-rw-r--r-- | src/mesa/swrast/s_drawpix.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index 6af80233483..c550b88e7d6 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -34,7 +34,6 @@ #include "s_context.h" #include "s_drawpix.h" -#include "s_pixeltex.h" #include "s_span.h" #include "s_stencil.h" #include "s_zoom.h" @@ -795,10 +794,6 @@ draw_rgba_pixels( GLcontext *ctx, GLint x, GLint y, (ctx->Pixel.HistogramEnabled && ctx->Histogram.Sink)) continue; - if (ctx->Pixel.PixelTextureEnabled && ctx->Texture._EnabledUnits) { - _swrast_pixel_texture(ctx, &span); - } - /* draw the span */ if (quickDraw) { rb->PutRow(ctx, rb, span.end, span.x, span.y, |