Fix silly typo breaking alpha test in many cases. Make some log VERBOSE.
This commit is contained in:
parent
14b35c8d2d
commit
de469e77a4
3 changed files with 7 additions and 5 deletions
|
@ -554,8 +554,10 @@ void FramebufferManager::DestroyAllFBOs() {
|
|||
for (auto iter = vfbs_.begin(); iter != vfbs_.end(); ++iter) {
|
||||
VirtualFramebuffer *vfb = *iter;
|
||||
textureCache_->NotifyFramebufferDestroyed(vfb->fb_address, vfb);
|
||||
if (vfb->fbo)
|
||||
if (vfb->fbo) {
|
||||
fbo_destroy(vfb->fbo);
|
||||
vfb->fbo = 0;
|
||||
}
|
||||
delete vfb;
|
||||
}
|
||||
vfbs_.clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue