Index: src/gpu/GrGpu.cpp |
diff --git a/src/gpu/GrGpu.cpp b/src/gpu/GrGpu.cpp |
index c4b155a2d46598e9d7c05f3eebf546a59080ef25..d7d4ae7fd481f29eca1b3806f007cc7c4bc539e0 100644 |
--- a/src/gpu/GrGpu.cpp |
+++ b/src/gpu/GrGpu.cpp |
@@ -82,10 +82,12 @@ bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) { |
int width = rt->width(); |
int height = rt->height(); |
+#if 0 |
if (this->caps()->oversizedStencilSupport()) { |
width = SkNextPow2(width); |
height = SkNextPow2(height); |
} |
+#endif |
GrStencilBuffer::ComputeSharedStencilBufferKey(width, height, rt->numSamples(), &sbKey); |
SkAutoTUnref<GrStencilBuffer> sb(static_cast<GrStencilBuffer*>( |