Remove "true ||" in conditional that was accidentally checked in.

git-svn-id: http://skia.googlecode.com/svn/trunk@916 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-03-10 14:53:38 +00:00
parent 1da0746fa1
commit 649a862186

View File

@ -1183,7 +1183,7 @@ void GrGpuGL::flushRenderTarget() {
fDirtyFlags.fRenderTargetChanged = true;
fHWDrawState.fRenderTarget = fCurrDrawState.fRenderTarget;
const GrGLIRect& vp = rt->getViewport();
if (true || fHWBounds.fViewportRect != vp) {
if (fHWBounds.fViewportRect != vp) {
vp.pushToGLViewport();
fHWBounds.fViewportRect = vp;
}