From 3c556a525dd34eda546ab5f983f3a87eaf4ad06d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 11 Jul 2007 07:25:57 +0000 Subject: [PATCH] Merged r3207:3208 from trunk/SDL: *INDENT-OFF* for inline asm. --- src/video/SDL_yuv_mmx.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/video/SDL_yuv_mmx.c b/src/video/SDL_yuv_mmx.c index cd0fcbf52..1e35477e4 100644 --- a/src/video/SDL_yuv_mmx.c +++ b/src/video/SDL_yuv_mmx.c @@ -27,6 +27,8 @@ #include "mmx.h" +/* *INDENT-OFF* */ + static mmx_t MMX_0080w = { .ud = {0x00800080, 0x00800080} }; static mmx_t MMX_00FFw = { .ud = {0x00ff00ff, 0x00ff00ff} }; static mmx_t MMX_FF00w = { .ud = {0xff00ff00, 0xff00ff00} }; @@ -425,5 +427,7 @@ void Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix, ); } +/* *INDENT-ON* */ + #endif /* GCC3 i386 inline assembly */