| Previous | 199869 Revisions | Next |
| r30846 Thursday 5th June, 2014 at 14:56:33 UTC by Oliver Stöneberg |
|---|
| also enable rgbsse.h for optimized (GCC only) DEBUG builds (nw) |
| [src/emu/video] | rgbutil.c rgbutil.h |
| r30845 | r30846 | |
|---|---|---|
| 18 | 18 | SSE TABLES |
| 19 | 19 | ***************************************************************************/ |
| 20 | 20 | |
| 21 | #if !defined(MAME_DEBUG) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64) | |
| 21 | #if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64) | |
| 22 | 22 | const struct _rgbsse_statics rgbsse_statics = |
| 23 | 23 | { |
| 24 | 24 | { 0 }, |
| r30845 | r30846 | |
|---|---|---|
| 14 | 14 | #define __RGBUTIL__ |
| 15 | 15 | |
| 16 | 16 | /* use SSE on 64-bit implementations, where it can be assumed */ |
| 17 | #if !defined(MAME_DEBUG) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64) | |
| 17 | #if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64) | |
| 18 | 18 | #include "rgbsse.h" |
| 19 | 19 | #elif defined(__ALTIVEC__) |
| 20 | 20 | #include "rgbvmx.h" |
| Previous | 199869 Revisions | Next |