summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_texture.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-01-05 21:28:31 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-01-05 21:28:31 +0000
commit8cbc573eae500aff6d121b2eef93fb00822622f1 (patch)
treeb37f54734b0e44221cbdd70fa3aa3d0c9c8a39d3 /src/mesa/swrast/s_texture.h
parent2d7e25c9ffea6f8fb64d54c57bcd0ade5559bb35 (diff)
Fixed bug in MinMagThresh computation.
Renamed gl_texture_pixels() to _swrast_texture_fragments()
Diffstat (limited to 'src/mesa/swrast/s_texture.h')
-rw-r--r--src/mesa/swrast/s_texture.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mesa/swrast/s_texture.h b/src/mesa/swrast/s_texture.h
index edb19691e7..9a64928b5d 100644
--- a/src/mesa/swrast/s_texture.h
+++ b/src/mesa/swrast/s_texture.h
@@ -1,4 +1,4 @@
-/* $Id: s_texture.h,v 1.3 2000/11/22 07:32:18 joukj Exp $ */
+/* $Id: s_texture.h,v 1.4 2001/01/05 21:28:31 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -25,9 +25,6 @@
*/
-
-
-
#ifndef S_TEXTURE_H
#define S_TEXTURE_H
@@ -36,15 +33,18 @@
#include "swrast.h"
-extern void gl_texture_pixels( GLcontext *ctx, GLuint texSet, GLuint n,
- const GLfloat s[], const GLfloat t[],
- const GLfloat r[], GLfloat lambda[],
- GLchan primary_rgba[][4], GLchan rgba[][4] );
-
extern void
_swrast_choose_texture_sample_func( GLcontext *ctx,
GLuint texUnit,
const struct gl_texture_object *tObj );
+
+extern void
+_swrast_texture_fragments( GLcontext *ctx, GLuint texSet, GLuint n,
+ const GLfloat s[], const GLfloat t[],
+ const GLfloat r[], GLfloat lambda[],
+ GLchan primary_rgba[][4], GLchan rgba[][4] );
+
+
#endif