SM_SDL_OrderedDither -> RageSurfaceUtils::OrderedDither

SM_SDL_ErrorDiffusionDither -> RageSurfaceUtils::ErrorDiffusionDither
(these have nothing to do with SDL; I'd rename the files but I hate
losing CVS history)
This commit is contained in:
Glenn Maynard
2004-08-28 09:09:34 +00:00
parent 01ed84e315
commit 3d3cbc73e5
4 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ void RageBitmapTexture::Create()
RageSurface *dst = CreateSurface( img->w, img->h, pfd->bpp,
pfd->masks[0], pfd->masks[1], pfd->masks[2], pfd->masks[3] );
SM_SDL_ErrorDiffusionDither(img, dst);
RageSurfaceUtils::ErrorDiffusionDither( img, dst );
delete img;
img = dst;
}