mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-04 04:20:51 +00:00
bind framebuffer when msaa enabled in transparent postpass
This commit is contained in:
parent
e6fcb8bd2d
commit
f6943f9f66
@ -63,10 +63,7 @@ namespace MWRender
|
|||||||
|
|
||||||
ext->glBlitFramebuffer(0, 0, tex->getTextureWidth(), tex->getTextureHeight(), 0, 0, tex->getTextureWidth(), tex->getTextureHeight(), GL_DEPTH_BUFFER_BIT, GL_NEAREST);
|
ext->glBlitFramebuffer(0, 0, tex->getTextureWidth(), tex->getTextureHeight(), 0, 0, tex->getTextureWidth(), tex->getTextureHeight(), GL_DEPTH_BUFFER_BIT, GL_NEAREST);
|
||||||
|
|
||||||
if (msaaFbo)
|
msaaFbo ? msaaFbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER) : fbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER);
|
||||||
msaaFbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER);
|
|
||||||
else
|
|
||||||
fbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER);
|
|
||||||
|
|
||||||
// draws scene into primary attachments
|
// draws scene into primary attachments
|
||||||
bin->drawImplementation(renderInfo, previous);
|
bin->drawImplementation(renderInfo, previous);
|
||||||
@ -82,8 +79,7 @@ namespace MWRender
|
|||||||
bin->drawImplementation(renderInfo, previous);
|
bin->drawImplementation(renderInfo, previous);
|
||||||
bin->setStateSet(restore);
|
bin->setStateSet(restore);
|
||||||
|
|
||||||
if (!msaaFbo)
|
msaaFbo ? msaaFbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER) : fbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER);
|
||||||
fbo->apply(state, osg::FrameBufferObject::DRAW_FRAMEBUFFER);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user