comparison src/video/SDL_blit.c @ 1330:450721ad5436

It's now possible to build SDL without any C runtime at all on Windows, using Visual C++ 2005
author Sam Lantinga <slouken@libsdl.org>
date Mon, 06 Feb 2006 08:28:51 +0000
parents c9b51268668f
children c71e05b4dc2e
comparison
equal deleted inserted replaced
1329:bc67bbf87818 1330:450721ad5436
18 18
19 Sam Lantinga 19 Sam Lantinga
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "SDL_error.h" 23 #include "SDL_error.h"
28 #include "SDL_video.h" 24 #include "SDL_video.h"
25 #include "SDL_string.h"
29 #include "SDL_sysvideo.h" 26 #include "SDL_sysvideo.h"
30 #include "SDL_blit.h" 27 #include "SDL_blit.h"
31 #include "SDL_RLEaccel_c.h" 28 #include "SDL_RLEaccel_c.h"
32 #include "SDL_pixels_c.h" 29 #include "SDL_pixels_c.h"
33 #include "SDL_memops.h"
34 30
35 #if (defined(i386) || defined(__x86_64__)) && defined(__GNUC__) && defined(USE_ASMBLIT) 31 #if (defined(i386) || defined(__x86_64__)) && defined(__GNUC__) && defined(USE_ASMBLIT)
36 #define MMX_ASMBLIT 32 #define MMX_ASMBLIT
37 #endif 33 #endif
38 34