- fixed: If we want to cache texture binding state we have to reset it in all places where a texture becomes unbound.
This commit is contained in:
parent
12160bd29c
commit
a280c20b4e
4 changed files with 8 additions and 0 deletions
|
|
@ -753,6 +753,7 @@ void FMaterial::BindToFrameBuffer()
|
|||
// must create the hardware texture first
|
||||
mBaseLayer->Bind(0, 0, 0, false, NULL);
|
||||
FHardwareTexture::Unbind(0);
|
||||
ClearLastTexture();
|
||||
}
|
||||
mBaseLayer->mHwTexture->BindToFrameBuffer();
|
||||
}
|
||||
|
|
@ -809,3 +810,7 @@ void FMaterial::FlushAll()
|
|||
}
|
||||
}
|
||||
|
||||
void FMaterial::ClearLastTexture()
|
||||
{
|
||||
last = NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue