From 10519e881b3635b7189cd4831fdd70c4806b240c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 18 Dec 2013 01:05:47 +0300 Subject: add restrict into surfaceimagehelper. --- src/resources/surfaceimagehelper.cpp | 8 ++++---- src/resources/surfaceimagehelper.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 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); diff --git a/src/resources/surfaceimagehelper.h b/src/resources/surfaceimagehelper.h index 75a39c617..39efa1d4d 100644 --- a/src/resources/surfaceimagehelper.h +++ b/src/resources/surfaceimagehelper.h @@ -94,10 +94,10 @@ class SurfaceImageHelper 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 */ -- cgit v1.2.3-60-g2f50