From e87ab8c05fb08c39432f5838c05df3b50e9a2694 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 24 May 2005 23:03:15 +0000 Subject: Only use x86 / SSE assembly when USE_X86_ASM / USE_SSE_ASM are defined. This makes the driver build on x86-64 again. --- src/mesa/drivers/dri/unichrome/via_memcpy.c | 4 ++-- src/mesa/drivers/dri/unichrome/via_tex.c | 4 ++++ src/mesa/drivers/dri/unichrome/via_tex.h | 2 ++ src/mesa/drivers/dri/unichrome/via_tris.c | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/drivers/dri/unichrome/via_memcpy.c b/src/mesa/drivers/dri/unichrome/via_memcpy.c index 351ba26ff2..d7b05bcaaf 100644 --- a/src/mesa/drivers/dri/unichrome/via_memcpy.c +++ b/src/mesa/drivers/dri/unichrome/via_memcpy.c @@ -26,6 +26,7 @@ #include "via_tex.h" +#if defined( USE_SSE_ASM ) #define SSE_PREFETCH " prefetchnta " #define FENCE __asm__ __volatile__ ("sfence":::"memory"); @@ -134,5 +135,4 @@ void via_sse_memcpy(void *to, FENCE; } - - +#endif /* defined( USE_SSE_ASM ) */ diff --git a/src/mesa/drivers/dri/unichrome/via_tex.c b/src/mesa/drivers/dri/unichrome/via_tex.c index 9672888f8e..f628e089d3 100644 --- a/src/mesa/drivers/dri/unichrome/via_tex.c +++ b/src/mesa/drivers/dri/unichrome/via_tex.c @@ -948,10 +948,14 @@ void viaInitTextureFuncs(struct dd_function_table * functions) functions->DeleteTexture = _mesa_delete_texture_object; functions->FreeTexImageData = viaFreeTextureImageData; +#if defined( USE_SSE_ASM ) if (getenv("VIA_NO_SSE")) functions->TextureMemCpy = _mesa_memcpy; else functions->TextureMemCpy = via_sse_memcpy; +#else + functions->TextureMemCpy = _mesa_memcpy; +#endif functions->UpdateTexturePalette = 0; functions->IsTextureResident = viaIsTextureResident; diff --git a/src/mesa/drivers/dri/unichrome/via_tex.h b/src/mesa/drivers/dri/unichrome/via_tex.h index 8277aada40..73cfa91add 100644 --- a/src/mesa/drivers/dri/unichrome/via_tex.h +++ b/src/mesa/drivers/dri/unichrome/via_tex.h @@ -34,6 +34,8 @@ GLboolean viaUpdateTextureState(GLcontext *ctx); void viaInitTextureFuncs(struct dd_function_table * functions); GLboolean viaSwapOutWork( struct via_context *vmesa ); +#if defined( USE_SSE_ASM ) void via_sse_memcpy( void *to, const void *from, size_t sz ); +#endif /* defined( USE_SSE_ASM ) */ #endif diff --git a/src/mesa/drivers/dri/unichrome/via_tris.c b/src/mesa/drivers/dri/unichrome/via_tris.c index e425a1eda7..898a343856 100644 --- a/src/mesa/drivers/dri/unichrome/via_tris.c +++ b/src/mesa/drivers/dri/unichrome/via_tris.c @@ -57,7 +57,7 @@ do { \ vb += vertsize; \ } while (0) #else -#if 1 +#if defined( USE_X86_ASM ) #define COPY_DWORDS(vb, vertsize, v) \ do { \ int j; \ -- cgit v1.2.3