Skip to content
Snippets Groups Projects
Commit f9f247c5 authored by David Parks's avatar David Parks
Browse files

SH-2084 Don't error out on framebuffer mismatch -- probably causing a crash...

SH-2084 Don't error out on framebuffer mismatch -- probably causing a crash when some post-snapshot or minimize/restore operation gets out of phase.
parent 04bee016
No related branches found
No related tags found
No related merge requests found
...@@ -457,7 +457,8 @@ void LLRenderTarget::copyContents(LLRenderTarget& source, S32 srcX0, S32 srcY0, ...@@ -457,7 +457,8 @@ void LLRenderTarget::copyContents(LLRenderTarget& source, S32 srcX0, S32 srcY0,
gGL.flush(); gGL.flush();
if (!source.mFBO || !mFBO) if (!source.mFBO || !mFBO)
{ {
llerrs << "Cannot copy framebuffer contents for non FBO render targets." << llendl; llwarns << "Cannot copy framebuffer contents for non FBO render targets." << llendl;
return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment