diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-30 14:17:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-30 14:17:37 +0300 |
commit | 31fcdb31fb406531bec49ee2d1b3cc286ed3b5a8 (patch) | |
tree | b7f2a06054bacc8208d8fb429fc811ed199b4453 /src/render/sdlgraphics.cpp | |
parent | 74f89c500d278b6ac668c313b63d0f1e76f4acaf (diff) | |
download | plus-31fcdb31fb406531bec49ee2d1b3cc286ed3b5a8.tar.gz plus-31fcdb31fb406531bec49ee2d1b3cc286ed3b5a8.tar.bz2 plus-31fcdb31fb406531bec49ee2d1b3cc286ed3b5a8.tar.xz plus-31fcdb31fb406531bec49ee2d1b3cc286ed3b5a8.zip |
Improve drawRescaledImage in renderers.
Diffstat (limited to 'src/render/sdlgraphics.cpp')
-rw-r--r-- | src/render/sdlgraphics.cpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp index ef1f2d2a5..5680243ca 100644 --- a/src/render/sdlgraphics.cpp +++ b/src/render/sdlgraphics.cpp @@ -55,12 +55,9 @@ SDLGraphics::~SDLGraphics() } bool SDLGraphics::drawRescaledImage(const Image *const image, - int srcX, int srcY, int dstX, int dstY, - const int width, const int height, const int desiredWidth, - const int desiredHeight, - const bool useColor A_UNUSED) + const int desiredHeight) { FUNC_BLOCK("Graphics::drawRescaledImage", 1) // Check that preconditions for blitting are met. @@ -82,10 +79,10 @@ bool SDLGraphics::drawRescaledImage(const Image *const image, SDL_Rect srcRect = { - static_cast<int16_t>(srcX + bounds.x), - static_cast<int16_t>(srcY + bounds.y), - static_cast<uint16_t>(width), - static_cast<uint16_t>(height) + static_cast<int16_t>(bounds.x), + static_cast<int16_t>(bounds.y), + static_cast<uint16_t>(bounds.w), + static_cast<uint16_t>(bounds.h) }; SDL_Rect dstRect = |