summaryrefslogtreecommitdiff
path: root/src/resources/surfaceimagehelper.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-18 01:05:47 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-18 01:05:47 +0300
commit10519e881b3635b7189cd4831fdd70c4806b240c (patch)
treea0b0d8d3a2d0025c297f07ac41dfcdfeeb961f80 /src/resources/surfaceimagehelper.cpp
parent1da23ac3e176da216c626ba7ce1320ff08efafdb (diff)
downloadplus-10519e881b3635b7189cd4831fdd70c4806b240c.tar.gz
plus-10519e881b3635b7189cd4831fdd70c4806b240c.tar.bz2
plus-10519e881b3635b7189cd4831fdd70c4806b240c.tar.xz
plus-10519e881b3635b7189cd4831fdd70c4806b240c.zip
add restrict into surfaceimagehelper.
Diffstat (limited to 'src/resources/surfaceimagehelper.cpp')
-rw-r--r--src/resources/surfaceimagehelper.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/surfaceimagehelper.cpp b/src/resources/surfaceimagehelper.cpp
index 22aa904f5..aaecc2b71 100644
--- a/src/resources/surfaceimagehelper.cpp
+++ b/src/resources/surfaceimagehelper.cpp
@@ -167,10 +167,10 @@ SDL_Surface *SurfaceImageHelper::create32BitSurface(int width,
width, height, 32, rmask, gmask, bmask, amask);
}
-int SurfaceImageHelper::combineSurface(SDL_Surface *const src,
- SDL_Rect *const srcrect,
- SDL_Surface *const dst,
- SDL_Rect *const dstrect)
+int SurfaceImageHelper::combineSurface(SDL_Surface *restrict const src,
+ SDL_Rect *restrict const srcrect,
+ SDL_Surface *restrict const dst,
+ SDL_Rect *restrict const dstrect)
{
SDL_SetSurfaceBlendMode(src, SDL_BLENDMODE_BLEND);
SDL_BlitSurface(src, srcrect, dst, dstrect);