| /* |
| * Copyright 2012 Google Inc. |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include "GrSWMaskHelper.h" |
| |
| #include "GrCaps.h" |
| #include "GrContext.h" |
| #include "batches/GrDrawBatch.h" |
| #include "GrRenderTargetContext.h" |
| #include "GrPipelineBuilder.h" |
| #include "GrShape.h" |
| |
| #include "SkDistanceFieldGen.h" |
| |
| #include "batches/GrRectBatchFactory.h" |
| |
| /* |
| * Convert a boolean operation into a transfer mode code |
| */ |
| static SkBlendMode op_to_mode(SkRegion::Op op) { |
| |
| static const SkBlendMode modeMap[] = { |
| SkBlendMode::kDstOut, // kDifference_Op |
| SkBlendMode::kModulate, // kIntersect_Op |
| SkBlendMode::kSrcOver, // kUnion_Op |
| SkBlendMode::kXor, // kXOR_Op |
| SkBlendMode::kClear, // kReverseDifference_Op |
| SkBlendMode::kSrc, // kReplace_Op |
| }; |
| |
| return modeMap[op]; |
| } |
| |
| /** |
| * Draw a single rect element of the clip stack into the accumulation bitmap |
| */ |
| void GrSWMaskHelper::drawRect(const SkRect& rect, SkRegion::Op op, |
| bool antiAlias, uint8_t alpha) { |
| SkPaint paint; |
| |
| paint.setBlendMode(op_to_mode(op)); |
| paint.setAntiAlias(antiAlias); |
| paint.setColor(SkColorSetARGB(alpha, alpha, alpha, alpha)); |
| |
| fDraw.drawRect(rect, paint); |
| } |
| |
| /** |
| * Draw a single path element of the clip stack into the accumulation bitmap |
| */ |
| void GrSWMaskHelper::drawShape(const GrShape& shape, SkRegion::Op op, bool antiAlias, |
| uint8_t alpha) { |
| SkPaint paint; |
| paint.setPathEffect(sk_ref_sp(shape.style().pathEffect())); |
| shape.style().strokeRec().applyToPaint(&paint); |
| paint.setAntiAlias(antiAlias); |
| |
| SkPath path; |
| shape.asPath(&path); |
| if (SkRegion::kReplace_Op == op && 0xFF == alpha) { |
| SkASSERT(0xFF == paint.getAlpha()); |
| fDraw.drawPathCoverage(path, paint); |
| } else { |
| paint.setBlendMode(op_to_mode(op)); |
| paint.setColor(SkColorSetARGB(alpha, alpha, alpha, alpha)); |
| fDraw.drawPath(path, paint); |
| } |
| } |
| |
| bool GrSWMaskHelper::init(const SkIRect& resultBounds, const SkMatrix* matrix) { |
| if (matrix) { |
| fMatrix = *matrix; |
| } else { |
| fMatrix.setIdentity(); |
| } |
| |
| // Now translate so the bound's UL corner is at the origin |
| fMatrix.postTranslate(-SkIntToScalar(resultBounds.fLeft), -SkIntToScalar(resultBounds.fTop)); |
| SkIRect bounds = SkIRect::MakeWH(resultBounds.width(), resultBounds.height()); |
| |
| const SkImageInfo bmImageInfo = SkImageInfo::MakeA8(bounds.width(), bounds.height()); |
| if (!fPixels.tryAlloc(bmImageInfo)) { |
| return false; |
| } |
| fPixels.erase(0); |
| |
| sk_bzero(&fDraw, sizeof(fDraw)); |
| fDraw.fDst = fPixels; |
| fRasterClip.setRect(bounds); |
| fDraw.fRC = &fRasterClip; |
| fDraw.fMatrix = &fMatrix; |
| return true; |
| } |
| |
| /** |
| * Get a texture (from the texture cache) of the correct size & format. |
| */ |
| GrTexture* GrSWMaskHelper::createTexture(TextureType textureType) { |
| GrSurfaceDesc desc; |
| desc.fWidth = fPixels.width(); |
| desc.fHeight = fPixels.height(); |
| desc.fConfig = kAlpha_8_GrPixelConfig; |
| |
| if (TextureType::kApproximateFit == textureType) { |
| return fTexProvider->createApproxTexture(desc); |
| } else { |
| return fTexProvider->createTexture(desc, SkBudgeted::kYes); |
| } |
| } |
| |
| /** |
| * Move the result of the software mask generation back to the gpu |
| */ |
| void GrSWMaskHelper::toTexture(GrTexture *texture) { |
| // Since we're uploading to it, and it's compressed, 'texture' shouldn't |
| // have a render target. |
| SkASSERT(!texture->asRenderTarget()); |
| |
| texture->writePixels(0, 0, fPixels.width(), fPixels.height(), texture->config(), |
| fPixels.addr(), fPixels.rowBytes()); |
| |
| } |
| |
| /** |
| * Convert mask generation results to a signed distance field |
| */ |
| void GrSWMaskHelper::toSDF(unsigned char* sdf) { |
| SkGenerateDistanceFieldFromA8Image(sdf, (const unsigned char*)fPixels.addr(), |
| fPixels.width(), fPixels.height(), fPixels.rowBytes()); |
| } |
| |
| //////////////////////////////////////////////////////////////////////////////// |
| /** |
| * Software rasterizes shape to A8 mask and uploads the result to a scratch texture. Returns the |
| * resulting texture on success; nullptr on failure. |
| */ |
| GrTexture* GrSWMaskHelper::DrawShapeMaskToTexture(GrTextureProvider* texProvider, |
| const GrShape& shape, |
| const SkIRect& resultBounds, |
| bool antiAlias, |
| TextureType textureType, |
| const SkMatrix* matrix) { |
| GrSWMaskHelper helper(texProvider); |
| |
| if (!helper.init(resultBounds, matrix)) { |
| return nullptr; |
| } |
| |
| helper.drawShape(shape, SkRegion::kReplace_Op, antiAlias, 0xFF); |
| |
| GrTexture* texture(helper.createTexture(textureType)); |
| if (!texture) { |
| return nullptr; |
| } |
| |
| helper.toTexture(texture); |
| |
| return texture; |
| } |
| |
| void GrSWMaskHelper::DrawToTargetWithShapeMask(GrTexture* texture, |
| GrRenderTargetContext* renderTargetContext, |
| const GrPaint& paint, |
| const GrUserStencilSettings& userStencilSettings, |
| const GrClip& clip, |
| const SkMatrix& viewMatrix, |
| const SkIPoint& textureOriginInDeviceSpace, |
| const SkIRect& deviceSpaceRectToDraw) { |
| SkMatrix invert; |
| if (!viewMatrix.invert(&invert)) { |
| return; |
| } |
| |
| SkRect dstRect = SkRect::Make(deviceSpaceRectToDraw); |
| |
| // We use device coords to compute the texture coordinates. We take the device coords and apply |
| // a translation so that the top-left of the device bounds maps to 0,0, and then a scaling |
| // matrix to normalized coords. |
| SkMatrix maskMatrix; |
| maskMatrix.setIDiv(texture->width(), texture->height()); |
| maskMatrix.preTranslate(SkIntToScalar(-textureOriginInDeviceSpace.fX), |
| SkIntToScalar(-textureOriginInDeviceSpace.fY)); |
| maskMatrix.preConcat(viewMatrix); |
| GrPipelineBuilder pipelineBuilder(paint, renderTargetContext->mustUseHWAA(paint)); |
| pipelineBuilder.setUserStencil(&userStencilSettings); |
| |
| pipelineBuilder.addCoverageFragmentProcessor( |
| GrSimpleTextureEffect::Make(texture, |
| nullptr, |
| maskMatrix, |
| GrTextureParams::kNone_FilterMode)); |
| |
| SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(paint.getColor(), |
| SkMatrix::I(), |
| dstRect, nullptr, &invert)); |
| renderTargetContext->drawBatch(pipelineBuilder, clip, batch); |
| } |