mirror of https://github.com/encounter/SDL.git
DirectFB: fixed creation of palette textures
This commit is contained in:
parent
83d600904b
commit
77acd44f28
|
@ -1146,8 +1146,10 @@ SDL_CreateTexture(SDL_Renderer * renderer, Uint32 format, int access, int w, int
|
|||
return NULL;
|
||||
}
|
||||
if (SDL_ISPIXELFORMAT_INDEXED(format)) {
|
||||
SDL_SetError("Palettized textures are not supported");
|
||||
return NULL;
|
||||
if (!IsSupportedFormat(renderer, format)) {
|
||||
SDL_SetError("Palettized textures are not supported");
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
if (w <= 0 || h <= 0) {
|
||||
SDL_SetError("Texture dimensions can't be 0");
|
||||
|
@ -1341,6 +1343,18 @@ SDL_CreateTextureFromSurface(SDL_Renderer * renderer, SDL_Surface * surface)
|
|||
} else {
|
||||
SDL_UpdateTexture(texture, NULL, surface->pixels, surface->pitch);
|
||||
}
|
||||
|
||||
#if SDL_VIDEO_RENDER_DIRECTFB
|
||||
/* DirectFB allows palette format for textures.
|
||||
* Copy SDL_Surface palette to the texture */
|
||||
if (SDL_ISPIXELFORMAT_INDEXED(format)) {
|
||||
if (SDL_strcasecmp(renderer->info.name, "directfb") == 0) {
|
||||
extern void DirectFB_SetTexturePalette(SDL_Renderer *renderer, SDL_Texture *texture, SDL_Palette *pal);
|
||||
DirectFB_SetTexturePalette(renderer, texture, surface->format->palette);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
} else {
|
||||
SDL_PixelFormat *dst_fmt;
|
||||
SDL_Surface *temp = NULL;
|
||||
|
|
|
@ -324,6 +324,22 @@ DirectFB_AcquireVidLayer(SDL_Renderer * renderer, SDL_Texture * texture)
|
|||
return 1;
|
||||
}
|
||||
|
||||
|
||||
/* Copy the SDL_Surface palette to the DirectFB texture palette */
|
||||
void DirectFB_SetTexturePalette(SDL_Renderer *renderer, SDL_Texture *texture, SDL_Palette *pal)
|
||||
{
|
||||
int i;
|
||||
DFBColor dfbpal[256];
|
||||
DirectFB_TextureData *data = (DirectFB_TextureData *) texture->driverdata;
|
||||
for (i = 0; i < pal->ncolors; i++) {
|
||||
dfbpal[i].a = pal->colors[i].a;
|
||||
dfbpal[i].r = pal->colors[i].r;
|
||||
dfbpal[i].g = pal->colors[i].g;
|
||||
dfbpal[i].b = pal->colors[i].b;
|
||||
}
|
||||
data->palette->SetEntries(data->palette, dfbpal, pal->ncolors, 0);
|
||||
}
|
||||
|
||||
static int
|
||||
DirectFB_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue