Fix dumb copy/paste error

git-svn-id: http://skia.googlecode.com/svn/trunk@2049 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-08-05 15:38:49 +00:00
parent 9181aa84aa
commit c7e6d08fd2

View File

@ -1331,7 +1331,7 @@ bool GrGpuGL::createStencilBufferForRenderTarget(GrRenderTarget* rt,
// as well.
GrGLTexture* tex = (GrGLTexture*) rt->asTexture();
width = GrMax(width, tex->allocWidth());
height = GrMax(height, tex->allocWidth());
height = GrMax(height, tex->allocHeight());
int samples = rt->numSamples();
GrGLuint sbID;