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:
parent
b521691583
commit
d849663877
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user