Index: src/gpu/GrRenderTarget.cpp |
diff --git a/src/gpu/GrRenderTarget.cpp b/src/gpu/GrRenderTarget.cpp |
index a0700a095fb654f5230e9654ed4a0d1604aefd08..d10082540225a560b4bdc324c1d37886333179c2 100644 |
--- a/src/gpu/GrRenderTarget.cpp |
+++ b/src/gpu/GrRenderTarget.cpp |
@@ -115,11 +115,3 @@ const GrGpu::MultisampleSpecs& |
GrRenderTargetPriv::getMultisampleSpecs(const GrStencilSettings& stencil) const { |
return fRenderTarget->getGpu()->getMultisampleSpecs(fRenderTarget, stencil); |
} |
- |
-GrRenderTarget::SampleConfig GrRenderTarget::ComputeSampleConfig(const GrCaps& caps, |
- int sampleCnt) { |
- return (caps.usesMixedSamples() && sampleCnt > 0) |
- ? GrRenderTarget::kStencil_SampleConfig |
- : GrRenderTarget::kUnified_SampleConfig; |
-} |
- |