- fix decal upscaling

This commit is contained in:
Magnus Norddahl 2018-12-17 01:32:15 +01:00
parent 15d599813b
commit 9e15f26923
1 changed files with 16 additions and 3 deletions

View File

@ -124,11 +124,24 @@ const uint8_t *FSoftwareTexture::GetPixels(int style)
auto tempbuffer = mTexture->CreateTexBuffer(0, mBufferFlags);
Pixels.Resize(GetPhysicalWidth()*GetPhysicalHeight());
PalEntry *pe = (PalEntry*)tempbuffer.mBuffer;
for (int y = 0; y < GetPhysicalHeight(); y++)
if (!style)
{
for (int x = 0; x < GetPhysicalWidth(); x++)
for (int y = 0; y < GetPhysicalHeight(); y++)
{
Pixels[y + x * GetPhysicalHeight()] = ImageHelpers::RGBToPalette(false, pe[x + y * GetPhysicalWidth()], true);
for (int x = 0; x < GetPhysicalWidth(); x++)
{
Pixels[y + x * GetPhysicalHeight()] = ImageHelpers::RGBToPalette(false, pe[x + y * GetPhysicalWidth()], true);
}
}
}
else
{
for (int y = 0; y < GetPhysicalHeight(); y++)
{
for (int x = 0; x < GetPhysicalWidth(); x++)
{
Pixels[y + x * GetPhysicalHeight()] = pe[x + y * GetPhysicalWidth()].r;
}
}
}
}