Added SDL_GetColorKey()
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403573
This commit is contained in:
parent
e62d2f485e
commit
107632a278
2 changed files with 30 additions and 0 deletions
|
@ -272,6 +272,23 @@ SDL_SetColorKey(SDL_Surface * surface, Uint32 flag, Uint32 key)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
SDL_GetColorKey(SDL_Surface * surface, Uint32 * key)
|
||||
{
|
||||
if (!surface) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!(surface->map->info.flags & SDL_COPY_COLORKEY)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (key) {
|
||||
*key = surface->map->info.colorkey;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* This is a fairly slow function to switch from colorkey to alpha */
|
||||
static void
|
||||
SDL_ConvertColorkeyToAlpha(SDL_Surface * surface)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue