X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fsdl%2FInitScreen.h;h=3a71d44485ebc3f436d76f907d5a7e696f1f361d;hb=67f6bb1d9727e7d1e2140cf2913aa89ebba84bf5;hp=ef0820fc30e65115a4f0716f15584b059daa93e7;hpb=a378f581fb88ce4ca718a18d7cc80d7007ebc66a;p=l2e.git diff --git a/src/sdl/InitScreen.h b/src/sdl/InitScreen.h index ef0820f..3a71d44 100644 --- a/src/sdl/InitScreen.h +++ b/src/sdl/InitScreen.h @@ -1,10 +1,3 @@ -/* - * InitScreen.h - * - * Created on: Apr 22, 2012 - * Author: holy - */ - #ifndef SDL_INITSCREEN_H_ #define SDL_INITSCREEN_H_ @@ -25,10 +18,13 @@ public: SDL_Surface *Screen(void) { return screen; }; const SDL_Surface *Screen(void) const { return screen; }; - void Flip(void) { SDL_Flip(screen); }; + void Flip(void); + SDL_Surface *Resize(int width, int height); private: SDL_Surface *screen; + int bpp; + Sint32 flags; };