projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1503b0
)
disable MMX blend code until it gets fixed
author
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 16 Jul 2001 20:45:55 +0000
(20:45 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 16 Jul 2001 20:45:55 +0000
(20:45 +0000)
src/mesa/swrast/s_blend.c
patch
|
blob
|
history
diff --git
a/src/mesa/swrast/s_blend.c
b/src/mesa/swrast/s_blend.c
index 3c0e64a5fe8a20995bd866035dce0b29ec10f091..02f40730179465940ebf87952a24c96188358170 100644
(file)
--- a/
src/mesa/swrast/s_blend.c
+++ b/
src/mesa/swrast/s_blend.c
@@
-1,4
+1,4
@@
-/* $Id: s_blend.c,v 1.
8 2001/07/13 20:07:37
brianp Exp $ */
+/* $Id: s_blend.c,v 1.
9 2001/07/16 20:45:55
brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-586,7
+586,8
@@
void _swrast_choose_blend_func( GLcontext *ctx )
else if (eq==GL_FUNC_ADD_EXT && srcRGB==GL_SRC_ALPHA
&& dstRGB==GL_ONE_MINUS_SRC_ALPHA)
{
-#if defined(USE_MMX_ASM)
+ /* XXX It looks like the MMX blend code is broken. Disable for now. */
+#if 0 && defined(USE_MMX_ASM)
if ( cpu_has_mmx ) {
SWRAST_CONTEXT(ctx)->BlendFunc = _mesa_mmx_blend_transparency;
}