- GL code adjustments for reworked precaching.

This commit is contained in:
Christoph Oelckers 2015-04-01 11:59:41 +02:00
parent 60d9f38084
commit 1e9a6e667e
4 changed files with 4 additions and 22 deletions

View File

@ -332,7 +332,7 @@ void OpenGLFrameBuffer::GetHitlist(BYTE *hitlist)
// check skybox textures and mark the separate faces as used
for(int i=0;i<TexMan.NumTextures(); i++)
{
if (hitlist[i])
if (hitlist[i] & FTextureManager::HIT_Sky)
{
FTexture *tex = TexMan.ByIndex(i);
if (tex->gl_info.bSkybox)
@ -343,7 +343,7 @@ void OpenGLFrameBuffer::GetHitlist(BYTE *hitlist)
if (sb->faces[i])
{
int index = sb->faces[i]->id.GetIndex();
hitlist[index] |= 1;
hitlist[index] |= FTextureManager::HIT_Flat;
}
}
}

View File

@ -132,23 +132,6 @@ void FSkyBox::Unload ()
//
//-----------------------------------------------------------------------------
void FSkyBox::PrecacheGL(int cache)
{
for (int i = 0; i < 6; i++)
{
if (faces[i])
{
faces[i]->PrecacheGL(cache);
}
}
}
//-----------------------------------------------------------------------------
//
//
//
//-----------------------------------------------------------------------------
void gl_ParseSkybox(FScanner &sc)
{
int facecount=0;

View File

@ -21,7 +21,6 @@ public:
int CopyTrueColorPixels(FBitmap *bmp, int x, int y, int rotate, FCopyInfo *inf);
bool UseBasePalette();
void Unload ();
void PrecacheGL(int cache);
void SetSize()
{

View File

@ -320,12 +320,12 @@ void FTexture::PrecacheGL(int cache)
{
if (gl_precache)
{
if (cache & 2)
if (cache & (FTextureManager::HIT_Wall | FTextureManager::HIT_Flat | FTextureManager::HIT_Sky))
{
FMaterial * gltex = FMaterial::ValidateTexture(this, false);
if (gltex) gltex->Precache();
}
if (cache & 4)
if (cache & FTextureManager::HIT_Sprite)
{
FMaterial * gltex = FMaterial::ValidateTexture(this, true);
if (gltex) gltex->Precache();