diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2012-07-29 22:08:40 +0200 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2012-08-05 12:23:54 +0200 |
commit | 4eea727b7649726670d8963d11ab4fd429624b3e (patch) | |
tree | 7cf2e9738506b5482b3d5ee8d5cd996f7043ba58 /src/graphics.cpp | |
parent | a4bdd8f7bef9ce0002a9015e0ebc9c4cb8dd3614 (diff) | |
download | mana-4eea727b7649726670d8963d11ab4fd429624b3e.tar.gz mana-4eea727b7649726670d8963d11ab4fd429624b3e.tar.bz2 mana-4eea727b7649726670d8963d11ab4fd429624b3e.tar.xz mana-4eea727b7649726670d8963d11ab4fd429624b3e.zip |
Graphics: take only const pointers to images.
Acked-by: Erik Schilling
Diffstat (limited to 'src/graphics.cpp')
-rw-r--r-- | src/graphics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphics.cpp b/src/graphics.cpp index 7b56d974..8bd16faa 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -146,7 +146,7 @@ int Graphics::getHeight() const return mHeight; } -bool Graphics::drawImage(Image *image, int x, int y) +bool Graphics::drawImage(const Image *image, int x, int y) { if (image) return drawImage(image, 0, 0, x, y, image->mBounds.w, image->mBounds.h); @@ -193,7 +193,7 @@ bool Graphics::drawRescaledImage(Image *image, int srcX, int srcY, return returnValue; } -bool Graphics::drawImage(Image *image, int srcX, int srcY, int dstX, int dstY, +bool Graphics::drawImage(const Image *image, int srcX, int srcY, int dstX, int dstY, int width, int height, bool) { // Check that preconditions for blitting are met. @@ -228,7 +228,7 @@ void Graphics::drawImage(gcn::Image const *image, int srcX, int srcY, drawImage(srcImage->getImage(), srcX, srcY, dstX, dstY, width, height, true); } -void Graphics::drawImagePattern(Image *image, int x, int y, int w, int h) +void Graphics::drawImagePattern(const Image *image, int x, int y, int w, int h) { // Check that preconditions for blitting are met. if (!mTarget || !image) |