summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-03-03 00:12:47 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-03-03 00:12:47 +0000
commit85312e6db1d04e57a48db097fe5149d91251cf64 (patch)
tree1060b662afdf8f7abe7a2372634d44aa59a31b33 /src/mesa
parenteb2b63877a5554ac0a5c9e4653f0a695560cf249 (diff)
changed AlphaFunc() ref from GLclampf to GLchan
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/dd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 5604269e59..d55158fba4 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -1,4 +1,4 @@
-/* $Id: dd.h,v 1.54 2001/02/24 18:25:52 keithw Exp $ */
+/* $Id: dd.h,v 1.55 2001/03/03 00:12:47 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -717,7 +717,7 @@ struct dd_function_table {
*** They're ALSO called by the gl_PopAttrib() function!!!
*** May add more functions like these to the device driver in the future.
***/
- void (*AlphaFunc)(GLcontext *ctx, GLenum func, GLclampf ref);
+ void (*AlphaFunc)(GLcontext *ctx, GLenum func, GLchan ref);
void (*BlendEquation)(GLcontext *ctx, GLenum mode);
void (*BlendFunc)(GLcontext *ctx, GLenum sfactor, GLenum dfactor);
void (*BlendFuncSeparate)(GLcontext *ctx,