summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2009-11-24 23:14:29 -0600
committerDave Parks <davep@lindenlab.com>2009-11-24 23:14:29 -0600
commitc9e153c182dae9472a2b87cddfec8c47b30b06b9 (patch)
tree0db2e4159da801752554d7971614325f0c54ca5e
parentd3d59f6b14c9da263a5a70af0d1cc600ebe8c184 (diff)
Fix for stalls when resizing screen texture.
-rw-r--r--indra/newview/llviewerwindow.cpp1
-rw-r--r--indra/newview/pipeline.cpp2
2 files changed, 0 insertions, 3 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 29ce2510f2..7873b4061e 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -4731,7 +4731,6 @@ F32 LLViewerWindow::getWorldViewAspectRatio() const
}
else
{
- llinfos << "World aspect ratio: " << world_aspect << llendl;
return world_aspect;
}
}
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index ba1732bc92..136a0a27aa 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -516,8 +516,6 @@ void LLPipeline::resizeScreenTexture()
GLuint resY = gViewerWindow->getWorldViewHeight();
allocateScreenBuffer(resX,resY);
-
- llinfos << "RESIZED SCREEN TEXTURE: " << resX << "x" << resY << llendl;
}
}