- fixed the texture size checks for determining if a camera texture requires offscreen rendering were wrong and checked the scaled size, not the physical size.

This commit is contained in:
Christoph Oelckers 2016-04-27 02:56:55 +02:00
parent 86f38475b0
commit 73823e6a09
1 changed files with 1 additions and 1 deletions

View File

@ -1138,7 +1138,7 @@ void FGLInterface::RenderTextureView (FCanvasTexture *tex, AActor *Viewpoint, in
gl_fixedcolormap=CM_DEFAULT;
gl_RenderState.SetFixedColormap(CM_DEFAULT);
bool usefb = gl_usefb || width > screen->GetWidth() || height > screen->GetHeight();
bool usefb = gl_usefb || gltex->GetWidth() > screen->GetWidth() || gltex->GetHeight() > screen->GetHeight();
if (!usefb)
{
glFlush();