// license:BSD-3-Clause // copyright-holders:Aaron Giles /*************************************************************************** rgbutil.h Utility definitions for RGB manipulation. Allows RGB handling to be performed in an abstracted fashion and optimized with SIMD. ***************************************************************************/ #ifndef MAME_EMU_VIDEO_RGBUTIL_H #define MAME_EMU_VIDEO_RGBUTIL_H // use SSE on 64-bit implementations, where it can be assumed #if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 2))) #define MAME_RGB_HIGH_PRECISION #include "rgbsse.h" #elif defined(__ALTIVEC__) #define MAME_RGB_HIGH_PRECISION #include "rgbvmx.h" #else #include "rgbgen.h" #endif #endif // MAME_EMU_VIDEO_RGBUTIL_H