Mercurial > sdl-ios-xcode
comparison src/video/SDL_blit.c @ 1361:19418e4422cb
New configure-based build system. Still work in progress, but much improved
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 16 Feb 2006 10:11:48 +0000 |
parents | c71e05b4dc2e |
children | d910939febfa |
comparison
equal
deleted
inserted
replaced
1360:70a9cfb4cf1b | 1361:19418e4422cb |
---|---|
24 #include "SDL_sysvideo.h" | 24 #include "SDL_sysvideo.h" |
25 #include "SDL_blit.h" | 25 #include "SDL_blit.h" |
26 #include "SDL_RLEaccel_c.h" | 26 #include "SDL_RLEaccel_c.h" |
27 #include "SDL_pixels_c.h" | 27 #include "SDL_pixels_c.h" |
28 | 28 |
29 #if (defined(i386) || defined(__x86_64__)) && defined(__GNUC__) && defined(USE_ASMBLIT) | 29 #if (i386 || __x86_64__) && __GNUC__ && SDL_ASSEMBLY_BLITTERS |
30 #define MMX_ASMBLIT | 30 #define MMX_ASMBLIT |
31 #endif | 31 #endif |
32 | 32 |
33 #if defined(MMX_ASMBLIT) | 33 #if defined(MMX_ASMBLIT) |
34 #include "SDL_cpuinfo.h" | 34 #include "SDL_cpuinfo.h" |