summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/blend.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-06-18 17:26:08 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-06-18 17:26:08 +0000
commit1b258989462e907e45abbdf8743b0a75f22c02b3 (patch)
treeaaf3847b0189aa370616fbd571a1650d13f1d145 /src/mesa/main/blend.h
parent24ae7c4c1f18c3086a779a2ee8f480ee5f4e7612 (diff)
downloadexternal_mesa3d-1b258989462e907e45abbdf8743b0a75f22c02b3.zip
external_mesa3d-1b258989462e907e45abbdf8743b0a75f22c02b3.tar.gz
external_mesa3d-1b258989462e907e45abbdf8743b0a75f22c02b3.tar.bz2
Consolidated source files. Since the re-org a number of source files
only had one or two functions left in them.
Diffstat (limited to 'src/mesa/main/blend.h')
-rw-r--r--src/mesa/main/blend.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/mesa/main/blend.h b/src/mesa/main/blend.h
index c2ec709..3e8b4ec 100644
--- a/src/mesa/main/blend.h
+++ b/src/mesa/main/blend.h
@@ -1,4 +1,4 @@
-/* $Id: blend.h,v 1.8 2001/03/12 00:48:37 gareth Exp $ */
+/* $Id: blend.h,v 1.9 2001/06/18 17:26:08 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -31,6 +31,7 @@
#include "mtypes.h"
+
extern void
_mesa_BlendFunc( GLenum sfactor, GLenum dfactor );
@@ -48,4 +49,20 @@ extern void
_mesa_BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
+extern void
+_mesa_AlphaFunc( GLenum func, GLclampf ref );
+
+
+extern void
+_mesa_LogicOp( GLenum opcode );
+
+
+extern void
+_mesa_IndexMask( GLuint mask );
+
+extern void
+_mesa_ColorMask( GLboolean red, GLboolean green,
+ GLboolean blue, GLboolean alpha );
+
+
#endif