| Index: src/image/SkSurface_Gpu.cpp
|
| diff --git a/src/image/SkSurface_Gpu.cpp b/src/image/SkSurface_Gpu.cpp
|
| index 024c151cea9fb73a146f5269d96c66e300827e3c..d7260ac29eb457566316e564d3ad32c44d4fed5c 100644
|
| --- a/src/image/SkSurface_Gpu.cpp
|
| +++ b/src/image/SkSurface_Gpu.cpp
|
| @@ -14,7 +14,7 @@
|
| public:
|
| SK_DECLARE_INST_COUNT(SkSurface_Gpu)
|
|
|
| - SkSurface_Gpu(GrRenderTarget*, bool cached, const SkSurfaceProps*, bool doClear);
|
| + SkSurface_Gpu(GrRenderTarget*, bool cached, TextRenderMode trm, bool doClear);
|
| virtual ~SkSurface_Gpu();
|
|
|
| virtual SkCanvas* onNewCanvas() SK_OVERRIDE;
|
| @@ -33,14 +33,13 @@
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|
| -SkSurface_Gpu::SkSurface_Gpu(GrRenderTarget* renderTarget, bool cached, const SkSurfaceProps* props,
|
| +SkSurface_Gpu::SkSurface_Gpu(GrRenderTarget* renderTarget, bool cached, TextRenderMode trm,
|
| bool doClear)
|
| - : INHERITED(renderTarget->width(), renderTarget->height(), props)
|
| -{
|
| + : INHERITED(renderTarget->width(), renderTarget->height()) {
|
| int deviceFlags = 0;
|
| deviceFlags |= cached ? SkGpuDevice::kCached_Flag : 0;
|
| - deviceFlags |= this->props().isUseDistanceFieldFonts() ? SkGpuDevice::kDFFonts_Flag : 0;
|
| - fDevice = SkGpuDevice::Create(renderTarget, this->props(), deviceFlags);
|
| + deviceFlags |= (kDistanceField_TextRenderMode == trm) ? SkGpuDevice::kDFFonts_Flag : 0;
|
| + fDevice = SkGpuDevice::Create(renderTarget, deviceFlags);
|
|
|
| if (kRGB_565_GrPixelConfig != renderTarget->config() && doClear) {
|
| fDevice->clear(0x0);
|
| @@ -52,17 +51,13 @@
|
| }
|
|
|
| SkCanvas* SkSurface_Gpu::onNewCanvas() {
|
| - SkCanvas::InitFlags flags = SkCanvas::kDefault_InitFlags;
|
| - // When we think this works...
|
| -// flags |= SkCanvas::kConservativeRasterClip_InitFlag;
|
| -
|
| - return SkNEW_ARGS(SkCanvas, (fDevice, &this->props(), flags));
|
| + return SkNEW_ARGS(SkCanvas, (fDevice));
|
| }
|
|
|
| SkSurface* SkSurface_Gpu::onNewSurface(const SkImageInfo& info) {
|
| GrRenderTarget* rt = fDevice->accessRenderTarget();
|
| int sampleCount = rt->numSamples();
|
| - return SkSurface::NewRenderTarget(fDevice->context(), info, sampleCount, &this->props());
|
| + return SkSurface::NewRenderTarget(fDevice->context(), info, sampleCount);
|
| }
|
|
|
| SkImage* SkSurface_Gpu::onNewImageSnapshot() {
|
| @@ -107,15 +102,15 @@
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|
| -SkSurface* SkSurface::NewRenderTargetDirect(GrRenderTarget* target, const SkSurfaceProps* props) {
|
| +SkSurface* SkSurface::NewRenderTargetDirect(GrRenderTarget* target, TextRenderMode trm) {
|
| if (NULL == target) {
|
| return NULL;
|
| }
|
| - return SkNEW_ARGS(SkSurface_Gpu, (target, false, props, false));
|
| + return SkNEW_ARGS(SkSurface_Gpu, (target, false, trm, false));
|
| }
|
|
|
| SkSurface* SkSurface::NewRenderTarget(GrContext* ctx, const SkImageInfo& info, int sampleCount,
|
| - const SkSurfaceProps* props) {
|
| + TextRenderMode trm) {
|
| if (NULL == ctx) {
|
| return NULL;
|
| }
|
| @@ -132,11 +127,11 @@
|
| return NULL;
|
| }
|
|
|
| - return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), false, props, true));
|
| + return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), false, trm, true));
|
| }
|
|
|
| SkSurface* SkSurface::NewScratchRenderTarget(GrContext* ctx, const SkImageInfo& info,
|
| - int sampleCount, const SkSurfaceProps* props) {
|
| + int sampleCount, TextRenderMode trm) {
|
| if (NULL == ctx) {
|
| return NULL;
|
| }
|
| @@ -154,5 +149,5 @@
|
| return NULL;
|
| }
|
|
|
| - return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), true, props, true));
|
| + return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), true, trm, true));
|
| }
|
|
|