summaryrefslogtreecommitdiff
path: root/src/mesa/x86/mmx.h
diff options
context:
space:
mode:
authorJose Fonseca <j_r_fonseca@yahoo.co.uk>2002-04-19 20:12:30 +0000
committerJose Fonseca <j_r_fonseca@yahoo.co.uk>2002-04-19 20:12:30 +0000
commit3fe2bb8933c15a7091838fd982dbad402fe6ad43 (patch)
treeda6c366c6230aab1b23afbeb8f97fc42f2ee3e55 /src/mesa/x86/mmx.h
parent4fa66fa85ccc1b35411c1deb65119cde6c9d44a4 (diff)
Added min and max blend functions.
Slight optimization of _mesa_mmx_blend_add.
Diffstat (limited to 'src/mesa/x86/mmx.h')
-rw-r--r--src/mesa/x86/mmx.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/x86/mmx.h b/src/mesa/x86/mmx.h
index da163880fb..11f78635ae 100644
--- a/src/mesa/x86/mmx.h
+++ b/src/mesa/x86/mmx.h
@@ -1,4 +1,4 @@
-/* $Id: mmx.h,v 1.8 2002/04/19 10:53:08 jrfonseca Exp $ */
+/* $Id: mmx.h,v 1.9 2002/04/19 20:12:30 jrfonseca Exp $ */
/*
* Mesa 3-D graphics library
@@ -37,6 +37,14 @@ _mesa_mmx_blend_add( GLcontext *ctx, GLuint n, const GLubyte mask[],
GLubyte rgba[][4], const GLubyte dest[][4] );
extern void _ASMAPI
+_mesa_mmx_blend_min( GLcontext *ctx, GLuint n, const GLubyte mask[],
+ GLubyte rgba[][4], const GLubyte dest[][4] );
+
+extern void _ASMAPI
+_mesa_mmx_blend_max( GLcontext *ctx, GLuint n, const GLubyte mask[],
+ GLubyte rgba[][4], const GLubyte dest[][4] );
+
+extern void _ASMAPI
_mesa_mmx_blend_modulate( GLcontext *ctx, GLuint n, const GLubyte mask[],
GLubyte rgba[][4], const GLubyte dest[][4] );