--------------------------------------------------------------------------
| 193 | |
| 194 | //-------------------------------------------------------------------------- |
| 195 | void PlatformBlitInit() |
| 196 | { |
| 197 | bitmapExtrude5551 = bitmapExtrude5551_asm; |
| 198 | bitmapExtrudeRGB = bitmapExtrudeRGB_c; |
| 199 | |
| 200 | if (Platform::SystemInfo.processor.properties & CPU_PROP_MMX) |
| 201 | { |
| 202 | #if defined(TORQUE_SUPPORTS_VC_INLINE_X86_ASM) |
| 203 | bitmapExtrudeRGB = bitmapExtrudeRGB_mmx; |
| 204 | bitmapConvertRGB_to_5551 = bitmapConvertRGB_to_5551_mmx; |
| 205 | #endif |
| 206 | } |
| 207 | } |