Mercurial > sdl-ios-xcode
comparison src/video/SDL_stretch.c @ 288:2f5a6062db86
Updated for Watcom C++ and LCC compilers
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 28 Feb 2002 00:28:26 +0000 |
parents | 051b991765ba |
children | f6ffac90895c |
comparison
equal
deleted
inserted
replaced
287:e4bd0cf95506 | 288:2f5a6062db86 |
---|---|
37 | 37 |
38 /* This isn't ready for general consumption yet - it should be folded | 38 /* This isn't ready for general consumption yet - it should be folded |
39 into the general blitting mechanism. | 39 into the general blitting mechanism. |
40 */ | 40 */ |
41 | 41 |
42 #if (defined(WIN32) && !defined(__FREEBCC__) && !defined(_M_ALPHA) && !defined(_WIN32_WCE)) || \ | 42 #if (defined(WIN32) && !defined(_M_ALPHA) && !defined(_WIN32_WCE) && \ |
43 defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT) | 43 !defined(__WATCOMC__) && !defined(__LCC__) && !defined(__FREEBCC__)) || \ |
44 (defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT)) | |
44 #define USE_ASM_STRETCH | 45 #define USE_ASM_STRETCH |
45 #endif | 46 #endif |
46 | 47 |
47 #ifdef USE_ASM_STRETCH | 48 #ifdef USE_ASM_STRETCH |
48 | 49 |