summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-18 00:57:13 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-18 00:57:13 +0300
commit754b514a1fcccc88d7ea191255c60fb70bbd70f1 (patch)
treeb318ef00dfb1f42722ce7f0d6b0a48d4e510f1bf /src
parentc042350256ddfb7a4ac276a0bc98c3d2673708de (diff)
downloadplus-754b514a1fcccc88d7ea191255c60fb70bbd70f1.tar.gz
plus-754b514a1fcccc88d7ea191255c60fb70bbd70f1.tar.bz2
plus-754b514a1fcccc88d7ea191255c60fb70bbd70f1.tar.xz
plus-754b514a1fcccc88d7ea191255c60fb70bbd70f1.zip
add restrict into sdlimagehelper.
Diffstat (limited to 'src')
-rw-r--r--src/resources/sdlimagehelper.cpp8
-rw-r--r--src/resources/sdlimagehelper.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/resources/sdlimagehelper.cpp b/src/resources/sdlimagehelper.cpp
index f39ecf4cd..6e198b457 100644
--- a/src/resources/sdlimagehelper.cpp
+++ b/src/resources/sdlimagehelper.cpp
@@ -294,10 +294,10 @@ SDL_Surface *SDLImageHelper::create32BitSurface(int width, int height) const
width, height, 32, rmask, gmask, bmask, amask);
}
-int SDLImageHelper::combineSurface(SDL_Surface *const src,
- SDL_Rect *const srcrect,
- SDL_Surface *const dst,
- SDL_Rect *const dstrect)
+int SDLImageHelper::combineSurface(SDL_Surface *restrict const src,
+ SDL_Rect *restrict const srcrect,
+ SDL_Surface *restrict const dst,
+ SDL_Rect *restrict const dstrect)
{
return SDL_gfxBlitRGBA(src, srcrect, dst, dstrect);
}
diff --git a/src/resources/sdlimagehelper.h b/src/resources/sdlimagehelper.h
index 9534f8362..ad1423596 100644
--- a/src/resources/sdlimagehelper.h
+++ b/src/resources/sdlimagehelper.h
@@ -87,10 +87,10 @@ class SDLImageHelper final : public ImageHelper
SDL_Surface *create32BitSurface(int width,
int height) const override final;
- static int combineSurface(SDL_Surface *const src,
- SDL_Rect *const srcrect,
- SDL_Surface *const dst,
- SDL_Rect *const dstrect);
+ static int combineSurface(SDL_Surface *restrict const src,
+ SDL_Rect *restrict const srcrect,
+ SDL_Surface *restrict const dst,
+ SDL_Rect *restrict const dstrect);
protected:
/** SDL_Surface to SDL_Surface Image loader */