Skip flush functions for disabled stages

Review URL: http://codereview.appspot.com/5483061



git-svn-id: http://skia.googlecode.com/svn/trunk@2870 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-12-13 18:40:47 +00:00
parent 508824bd4b
commit 40d9293b62

View File

@ -718,15 +718,17 @@ bool GrGpuGLShaders::flushGraphicsState(GrPrimitiveType type) {
this->flushViewMatrix();
for (int s = 0; s < GrDrawState::kNumStages; ++s) {
this->flushTextureMatrix(s);
if (this->isStageEnabled(s)) {
this->flushTextureMatrix(s);
this->flushRadial2(s);
this->flushRadial2(s);
this->flushConvolution(s);
this->flushConvolution(s);
this->flushTexelSize(s);
this->flushTexelSize(s);
this->flushTextureDomain(s);
this->flushTextureDomain(s);
}
}
this->flushEdgeAAData();
resetDirtyFlags();