mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 21:21:04 +00:00
- fixed incorrect translation table that was used to process grayscale patch and IMGZ textures.
- fixed: The MD5 check for patches deleted the buffer too early.
This commit is contained in:
parent
c869df9bf7
commit
6fcf1e0149
2 changed files with 3 additions and 3 deletions
|
@ -217,6 +217,6 @@ uint8_t *FIMGZTexture::MakeTexture (FRenderStyle style)
|
||||||
int FIMGZTexture::CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rotate, FCopyInfo *inf)
|
int FIMGZTexture::CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rotate, FCopyInfo *inf)
|
||||||
{
|
{
|
||||||
if (!isalpha) return FTexture::CopyTrueColorPixels(bmp, x, y, rotate, inf);
|
if (!isalpha) return FTexture::CopyTrueColorPixels(bmp, x, y, rotate, inf);
|
||||||
else return CopyTrueColorTranslated(bmp, x, y, rotate, translationtables[TRANSLATION_Standard][isalpha ? STD_Gray : STD_Grayscale]->Palette, inf);
|
else return CopyTrueColorTranslated(bmp, x, y, rotate, translationtables[TRANSLATION_Standard][STD_Grayscale]->Palette, inf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -114,13 +114,13 @@ static bool CheckIfPatch(FileReader & file, bool &isalpha)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delete [] data;
|
|
||||||
if (!gapAtStart)
|
if (!gapAtStart)
|
||||||
{
|
{
|
||||||
// only check this if the texture passed validation.
|
// only check this if the texture passed validation.
|
||||||
// Here is a good point because we already have a valid buffer of the lump's data.
|
// Here is a good point because we already have a valid buffer of the lump's data.
|
||||||
isalpha = checkPatchForAlpha(data, (uint32_t)file.GetLength());
|
isalpha = checkPatchForAlpha(data, (uint32_t)file.GetLength());
|
||||||
}
|
}
|
||||||
|
delete[] data;
|
||||||
return !gapAtStart;
|
return !gapAtStart;
|
||||||
}
|
}
|
||||||
delete [] data;
|
delete [] data;
|
||||||
|
@ -273,7 +273,7 @@ uint8_t *FPatchTexture::MakeTexture (FRenderStyle style)
|
||||||
int FPatchTexture::CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rotate, FCopyInfo *inf)
|
int FPatchTexture::CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rotate, FCopyInfo *inf)
|
||||||
{
|
{
|
||||||
if (!isalpha) return FTexture::CopyTrueColorPixels(bmp, x, y, rotate, inf);
|
if (!isalpha) return FTexture::CopyTrueColorPixels(bmp, x, y, rotate, inf);
|
||||||
else return CopyTrueColorTranslated(bmp, x, y, rotate, translationtables[TRANSLATION_Standard][isalpha ? STD_Gray : STD_Grayscale]->Palette, inf);
|
else return CopyTrueColorTranslated(bmp, x, y, rotate, translationtables[TRANSLATION_Standard][STD_Grayscale]->Palette, inf);
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
Loading…
Reference in a new issue