also enable rgbsse.h for optimized (GCC only) DEBUG builds (nw)
This commit is contained in:
parent
5c0a2624c6
commit
e9b70d0e93
@ -18,7 +18,7 @@
|
|||||||
SSE TABLES
|
SSE TABLES
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#if !defined(MAME_DEBUG) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
|
#if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
|
||||||
const struct _rgbsse_statics rgbsse_statics =
|
const struct _rgbsse_statics rgbsse_statics =
|
||||||
{
|
{
|
||||||
{ 0 },
|
{ 0 },
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
#define __RGBUTIL__
|
#define __RGBUTIL__
|
||||||
|
|
||||||
/* use SSE on 64-bit implementations, where it can be assumed */
|
/* use SSE on 64-bit implementations, where it can be assumed */
|
||||||
#if !defined(MAME_DEBUG) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
|
#if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
|
||||||
#include "rgbsse.h"
|
#include "rgbsse.h"
|
||||||
#elif defined(__ALTIVEC__)
|
#elif defined(__ALTIVEC__)
|
||||||
#include "rgbvmx.h"
|
#include "rgbvmx.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user