mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
disable MMX blend code until it gets fixed
This commit is contained in:
parent
a1503b00f8
commit
461b990508
1 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue