From 847019ebb169d95d2ca00edcf4e209019513fb35 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 25 Aug 2013 23:40:50 +0300 Subject: fix rescaled images draw in software mode in SDL2. --- src/sdl2graphics.cpp | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) (limited to 'src/sdl2graphics.cpp') diff --git a/src/sdl2graphics.cpp b/src/sdl2graphics.cpp index 42f06a1cc..9801006d9 100644 --- a/src/sdl2graphics.cpp +++ b/src/sdl2graphics.cpp @@ -73,14 +73,6 @@ bool SDLGraphics::drawRescaledImage(const Image *const image, int srcX, int srcY if (!image->mTexture) return false; - Image *const tmpImage = image->SDLgetScaledImage( - desiredWidth, desiredHeight); - - if (!tmpImage) - return false; - if (!tmpImage->mTexture) - return false; - dstX += mClipStack.top().xOffset; dstY += mClipStack.top().yOffset; @@ -95,15 +87,11 @@ bool SDLGraphics::drawRescaledImage(const Image *const image, int srcX, int srcY srcRect.y = static_cast(srcY); srcRect.w = static_cast(width); srcRect.h = static_cast(height); + dstRect.w = static_cast(desiredWidth); + dstRect.h = static_cast(desiredHeight); - // +++ dstRect.w/h - - const bool returnValue = (SDL_RenderCopy(mRenderer, tmpImage->mTexture, + return (SDL_RenderCopy(mRenderer, image->mTexture, &srcRect, &dstRect) < 0); - - delete tmpImage; - - return returnValue; } bool SDLGraphics::drawImage2(const Image *const image, int srcX, int srcY, -- cgit v1.2.3-70-g09d2