Fix for #1818 thanks to math07

Intel gpu seems to have issue capturing screenshot from GL_FRONT
framebuffer, use GL_BACK instead.
This commit is contained in:
Vincent Lejeune 2015-01-01 20:46:00 +01:00
parent b521691583
commit d849663877

View File

@ -4651,7 +4651,7 @@ IImage* COpenGLDriver::createScreenShot(video::ECOLOR_FORMAT format, video::E_RE
pixels = static_cast<u8*>(newImage->lock());
if (pixels)
{
GLenum tgt=GL_FRONT;
GLenum tgt=GL_BACK;
switch (target)
{
case video::ERT_FRAME_BUFFER: