Renamed FTexture::GetPixels

This was needed to allow refactoring without letting all the other GetPixels get in the way.
This commit is contained in:
Christoph Oelckers 2018-12-07 03:35:10 +01:00
commit 69cc1f831c
9 changed files with 49 additions and 26 deletions

View file

@ -59,9 +59,9 @@ FSkyBox::~FSkyBox()
//
//-----------------------------------------------------------------------------
const uint8_t *FSkyBox::GetPixels (FRenderStyle style)
const uint8_t *FSkyBox::Get8BitPixels (FRenderStyle style)
{
if (faces[0]) return faces[0]->GetPixels(style);
if (faces[0]) return faces[0]->Get8BitPixels(style);
return NULL;
}