From de4b0cc408de422fb6d82ed0ef9708fa7b4b292a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 8 Aug 2004 17:17:11 +0000 Subject: [PATCH] update comment --- stepmania/src/RageSurfaceUtils.cpp | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/stepmania/src/RageSurfaceUtils.cpp b/stepmania/src/RageSurfaceUtils.cpp index dcf73cf353..f58934d1c4 100644 --- a/stepmania/src/RageSurfaceUtils.cpp +++ b/stepmania/src/RageSurfaceUtils.cpp @@ -591,14 +591,11 @@ void RageSurfaceUtils::Blit( RageSurface *src, RageSurface *dst, int width, int width = min(src->w, dst->w); height = min(src->h, dst->h); - /* Types of blits: - * RGBA->RGBA, same format without colorkey - * RGBA->RGBA, same format with colorkey - * PAL->PAL; ignore colorkey flag - * RGBA->RGBA different format without colorkey - * RGBA->RGBA different format with colorkey - * PAL->RGBA with colorkey - * PAL->RGBA without colorkey + /* + * Types of blits: + * RGBA->RGBA or PAL->PAL, same format (possibly different pitch) + * RGBA->RGBA different formats + * PAL->RGBA */ if( src->format->BytesPerPixel == dst->format->BytesPerPixel && src->format->Rmask == dst->format->Rmask &&