|
⇤ ← Revision 1 as of 2010-02-25 20:18:35
Size: 1009
Comment: create page, add content (Rev 5540)
|
Size: 1010
Comment: update content - standard return value
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 21: | Line 21: |
| Returns 0 on success, or -1 if the surface is not valid; call [[SDL_GetError]]() for more information. | Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. |
DRAFT |
SDL_SetSurfaceRLE
Use this function to set the RLE acceleration hint for a surface.
Contents
Syntax
int SDL_SetSurfaceRLE(SDL_Surface* surface,
int flag)
Function Parameters
surface |
a pointer to the SDL_Surface to set |
flag |
0 to disable?, non-zero to enable? RLE acceleration |
Return Value
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
If RLE is enabled, colorkey and alpha blending blits are much faster, but the surface must be locked before directly accessing the pixels.
