diff options
author | José Fonseca <[email protected]> | 2008-10-07 14:25:09 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-10-07 14:25:09 +0900 |
commit | 4d7394f89292131323fc8e39efa511a2eeb8cc60 (patch) | |
tree | ef029f835220f5d1a03a7952ac8b2398783f8064 /src/gallium/drivers/softpipe | |
parent | 8e8208d6db8b764568539784a6473d545dec2265 (diff) |
gallium: Introduce PIPE_ARCH_SSE define for SSE support.
Besides meaning x86 and x86-64 architecture, it also depends on SSE2
support enabled on gcc.
This fixes the linux-debug build.
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_fs_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_fs_sse.c b/src/gallium/drivers/softpipe/sp_fs_sse.c index 496ed43df26..0111469405f 100644 --- a/src/gallium/drivers/softpipe/sp_fs_sse.c +++ b/src/gallium/drivers/softpipe/sp_fs_sse.c @@ -40,7 +40,7 @@ #include "tgsi/tgsi_sse2.h" -#ifdef PIPE_ARCH_X86 +#if defined(PIPE_ARCH_X86) && defined(PIPE_ARCH_SSE) #include "rtasm/rtasm_x86sse.h" |