mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-15 22:35:59 +00:00
OCD fixes: Adds a space after /* (glory to regular expressions!)
This commit is contained in:
@@ -958,10 +958,10 @@ SDL_SW_SetupYUVDisplay(SDL_SW_YUVTexture * swdata, Uint32 target_format)
|
||||
if (SDL_HasMMX() && (Rmask == 0xF800) &&
|
||||
(Gmask == 0x07E0) && (Bmask == 0x001F)
|
||||
&& (swdata->w & 15) == 0) {
|
||||
/*printf("Using MMX 16-bit 565 dither\n"); */
|
||||
/* printf("Using MMX 16-bit 565 dither\n"); */
|
||||
swdata->Display1X = Color565DitherYV12MMX1X;
|
||||
} else {
|
||||
/*printf("Using C 16-bit dither\n"); */
|
||||
/* printf("Using C 16-bit dither\n"); */
|
||||
swdata->Display1X = Color16DitherYV12Mod1X;
|
||||
}
|
||||
#else
|
||||
@@ -979,10 +979,10 @@ SDL_SW_SetupYUVDisplay(SDL_SW_YUVTexture * swdata, Uint32 target_format)
|
||||
if (SDL_HasMMX() && (Rmask == 0x00FF0000) &&
|
||||
(Gmask == 0x0000FF00) &&
|
||||
(Bmask == 0x000000FF) && (swdata->w & 15) == 0) {
|
||||
/*printf("Using MMX 32-bit dither\n"); */
|
||||
/* printf("Using MMX 32-bit dither\n"); */
|
||||
swdata->Display1X = ColorRGBDitherYV12MMX1X;
|
||||
} else {
|
||||
/*printf("Using C 32-bit dither\n"); */
|
||||
/* printf("Using C 32-bit dither\n"); */
|
||||
swdata->Display1X = Color32DitherYV12Mod1X;
|
||||
}
|
||||
#else
|
||||
|
Reference in New Issue
Block a user