Mercurial > sdl-ios-xcode
comparison include/SDL_surface.h @ 4949:68da5a234bba
The source rectangle isn't modified in SDL_UpperBlit
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 04 Jan 2011 10:19:24 -0800 |
parents | aa8888658021 |
children | 158bb5752974 |
comparison
equal
deleted
inserted
replaced
4948:6546eaa20271 | 4949:68da5a234bba |
---|---|
583 /** | 583 /** |
584 * This is the public blit function, SDL_BlitSurface(), and it performs | 584 * This is the public blit function, SDL_BlitSurface(), and it performs |
585 * rectangle validation and clipping before passing it to SDL_LowerBlit() | 585 * rectangle validation and clipping before passing it to SDL_LowerBlit() |
586 */ | 586 */ |
587 extern DECLSPEC int SDLCALL SDL_UpperBlit | 587 extern DECLSPEC int SDLCALL SDL_UpperBlit |
588 (SDL_Surface * src, SDL_Rect * srcrect, | 588 (SDL_Surface * src, const SDL_Rect * srcrect, |
589 SDL_Surface * dst, SDL_Rect * dstrect); | 589 SDL_Surface * dst, SDL_Rect * dstrect); |
590 | 590 |
591 /** | 591 /** |
592 * This is a semi-private blit function and it performs low-level surface | 592 * This is a semi-private blit function and it performs low-level surface |
593 * blitting only. | 593 * blitting only. |