mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- port texture upscaler code to truecolour
This commit is contained in:
parent
aaabefbfab
commit
2e927c7026
1 changed files with 18 additions and 2 deletions
|
@ -146,8 +146,24 @@ const uint32_t *FSoftwareTexture::GetPixelsBgra()
|
|||
{
|
||||
if (PixelsBgra.Size() == 0 || CheckModified(2))
|
||||
{
|
||||
FBitmap bitmap = mTexture->GetBgraBitmap(nullptr);
|
||||
GenerateBgraFromBitmap(bitmap);
|
||||
if (mPhysicalScale == 1)
|
||||
{
|
||||
FBitmap bitmap = mTexture->GetBgraBitmap(nullptr);
|
||||
GenerateBgraFromBitmap(bitmap);
|
||||
}
|
||||
else
|
||||
{
|
||||
auto tempbuffer = mTexture->CreateTexBuffer(0, mBufferFlags);
|
||||
PixelsBgra.Resize(GetWidth()*GetHeight());
|
||||
PalEntry *pe = (PalEntry*)tempbuffer.mBuffer;
|
||||
for (int y = 0; y < GetHeight(); y++)
|
||||
{
|
||||
for (int x = 0; x < GetWidth(); x++)
|
||||
{
|
||||
PixelsBgra[y + x * GetHeight()] = pe[x + y * GetWidth()];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return PixelsBgra.Data();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue