00001 /*************************************************************************** 00002 SDLStretch.h - description 00003 ------------------- 00004 begin : Thu Nov 11 1999 00005 copyright : (C) 1999 by Alexander Pipelka 00006 email : pipelka@teleweb.at 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 00011 This library is free software; you can redistribute it and/or 00012 modify it under the terms of the GNU Library General Public 00013 License as published by the Free Software Foundation; either 00014 version 2 of the License, or (at your option) any later version. 00015 00016 This library is distributed in the hope that it will be useful, 00017 but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00019 Library General Public License for more details. 00020 00021 ***************************************************************************/ 00022 00023 00024 #ifndef INCLUDE_SDLSTRETCH_H 00025 #define INCLUDE_SDLSTRETCH_H 00026 00027 #include <SDL.h> 00028 #include <SDL_types.h> 00029 #include "../global.h" 00030 00031 00032 extern void SDL_StretchSurface(SDL_Surface* src_surface, SDL_Rect* src_rect, SDL_Surface* dst_surface, SDL_Rect* dst_rect, Uint32* voiLUT = NULL); 00033 extern void SDL_StretchSurface(SDL_Surface* src_surface, int xs1, int ys1, int xs2, int ys2, SDL_Surface* dst_surface, int xd1, int yd1, int xd2, int yd2, Uint32* voiLUT = NULL); 00034 00035 00036 #endif
1.4.2