Browse Source

disable call to via_sse_memcpy() until it's fixed

tags/mesa_20050715^0
Brian Paul 20 years ago
parent
commit
8d3aca655e
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      src/mesa/drivers/dri/unichrome/via_tex.c

+ 7
- 1
src/mesa/drivers/dri/unichrome/via_tex.c View File

@@ -948,7 +948,13 @@ void viaInitTextureFuncs(struct dd_function_table * functions)
functions->DeleteTexture = _mesa_delete_texture_object;
functions->FreeTexImageData = viaFreeTextureImageData;

#if defined( USE_SSE_ASM )
#if 0 && defined( USE_SSE_ASM )
/*
* XXX this code is disabled for now because the via_sse_memcpy()
* routine causes segfaults with flightgear.
* See Mesa3d-dev mail list messages from 7/15/2005 for details.
* Note that this function is currently disabled in via_tris.c too.
*/
if (getenv("VIA_NO_SSE"))
functions->TextureMemCpy = _mesa_memcpy;
else

Loading…
Cancel
Save