Coverage Report

Created: 2021-08-22 09:07

/src/skia/src/gpu/GrBlend.h
Line
Count
Source (jump to first uncovered line)
1
2
/*
3
 * Copyright 2013 Google Inc.
4
 *
5
 * Use of this source code is governed by a BSD-style license that can be
6
 * found in the LICENSE file.
7
 */
8
9
#ifndef GrBlend_DEFINED
10
#define GrBlend_DEFINED
11
12
#include "include/core/SkTypes.h"
13
14
/**
15
 * Equations for alpha-blending.
16
 */
17
enum GrBlendEquation {
18
    // Basic blend equations.
19
    kAdd_GrBlendEquation,             //<! Cs*S + Cd*D
20
    kSubtract_GrBlendEquation,        //<! Cs*S - Cd*D
21
    kReverseSubtract_GrBlendEquation, //<! Cd*D - Cs*S
22
23
    // Advanced blend equations. These are described in the SVG and PDF specs.
24
    kScreen_GrBlendEquation,
25
    kOverlay_GrBlendEquation,
26
    kDarken_GrBlendEquation,
27
    kLighten_GrBlendEquation,
28
    kColorDodge_GrBlendEquation,
29
    kColorBurn_GrBlendEquation,
30
    kHardLight_GrBlendEquation,
31
    kSoftLight_GrBlendEquation,
32
    kDifference_GrBlendEquation,
33
    kExclusion_GrBlendEquation,
34
    kMultiply_GrBlendEquation,
35
    kHSLHue_GrBlendEquation,
36
    kHSLSaturation_GrBlendEquation,
37
    kHSLColor_GrBlendEquation,
38
    kHSLLuminosity_GrBlendEquation,
39
40
    kIllegal_GrBlendEquation,
41
42
    kFirstAdvancedGrBlendEquation = kScreen_GrBlendEquation,
43
    kLast_GrBlendEquation = kIllegal_GrBlendEquation,
44
};
45
46
static const int kGrBlendEquationCnt = kLast_GrBlendEquation + 1;
47
48
49
/**
50
 * Coefficients for alpha-blending.
51
 */
52
enum GrBlendCoeff {
53
    kZero_GrBlendCoeff,    //<! 0
54
    kOne_GrBlendCoeff,     //<! 1
55
    kSC_GrBlendCoeff,      //<! src color
56
    kISC_GrBlendCoeff,     //<! one minus src color
57
    kDC_GrBlendCoeff,      //<! dst color
58
    kIDC_GrBlendCoeff,     //<! one minus dst color
59
    kSA_GrBlendCoeff,      //<! src alpha
60
    kISA_GrBlendCoeff,     //<! one minus src alpha
61
    kDA_GrBlendCoeff,      //<! dst alpha
62
    kIDA_GrBlendCoeff,     //<! one minus dst alpha
63
    kConstC_GrBlendCoeff,  //<! constant color
64
    kIConstC_GrBlendCoeff, //<! one minus constant color
65
    kS2C_GrBlendCoeff,
66
    kIS2C_GrBlendCoeff,
67
    kS2A_GrBlendCoeff,
68
    kIS2A_GrBlendCoeff,
69
70
    kIllegal_GrBlendCoeff,
71
72
    kLast_GrBlendCoeff = kIllegal_GrBlendCoeff,
73
};
74
75
static const int kGrBlendCoeffCnt = kLast_GrBlendCoeff + 1;
76
77
0
static constexpr bool GrBlendCoeffRefsSrc(const GrBlendCoeff coeff) {
78
0
    return kSC_GrBlendCoeff == coeff || kISC_GrBlendCoeff == coeff || kSA_GrBlendCoeff == coeff ||
79
0
           kISA_GrBlendCoeff == coeff;
80
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendCoeffRefsSrc(GrBlendCoeff)
81
82
0
static constexpr bool GrBlendCoeffRefsDst(const GrBlendCoeff coeff) {
83
0
    return kDC_GrBlendCoeff == coeff || kIDC_GrBlendCoeff == coeff || kDA_GrBlendCoeff == coeff ||
84
0
           kIDA_GrBlendCoeff == coeff;
85
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendCoeffRefsDst(GrBlendCoeff)
86
87
0
static constexpr bool GrBlendCoeffRefsSrc2(const GrBlendCoeff coeff) {
88
0
    return kS2C_GrBlendCoeff == coeff || kIS2C_GrBlendCoeff == coeff ||
89
0
           kS2A_GrBlendCoeff == coeff || kIS2A_GrBlendCoeff == coeff;
90
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendCoeffRefsSrc2(GrBlendCoeff)
91
92
0
static constexpr bool GrBlendCoeffsUseSrcColor(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) {
93
0
    return kZero_GrBlendCoeff != srcCoeff || GrBlendCoeffRefsSrc(dstCoeff);
94
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendCoeffsUseSrcColor(GrBlendCoeff, GrBlendCoeff)
95
96
static constexpr bool GrBlendCoeffsUseDstColor(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff,
97
0
                                               bool srcColorIsOpaque) {
98
0
    return GrBlendCoeffRefsDst(srcCoeff) ||
99
0
           (dstCoeff != kZero_GrBlendCoeff && !(dstCoeff == kISA_GrBlendCoeff && srcColorIsOpaque));
100
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTest.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: MemoryCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: TestOps.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBitmap.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkCanvas.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkData.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDevice.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMipmap.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPaint.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkVertices.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkXfermode.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImage.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSurface.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DSLExpression.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DSLStatement.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DSLWriter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrCaps.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGpu.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrImageContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPipeline.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSurface.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTexture.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: BaseDevice.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkGr.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDashOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: Device.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: PathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBlitter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDraw.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkColorShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPicture.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPictureData.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAttachment.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPaint.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrClearOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: ClipStack.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkGraphics.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: DrawCommand.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendCoeffsUseDstColor(GrBlendCoeff, GrBlendCoeff, bool)
101
102
0
static constexpr bool GrBlendEquationIsAdvanced(GrBlendEquation equation) {
103
0
    return equation >= kFirstAdvancedGrBlendEquation
104
0
        && equation != kIllegal_GrBlendEquation;
105
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTest.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: MemoryCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: TestOps.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBitmap.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkCanvas.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkData.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDevice.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMipmap.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPaint.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkVertices.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkXfermode.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImage.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSurface.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DSLExpression.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DSLStatement.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DSLWriter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrCaps.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGpu.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrImageContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPipeline.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSurface.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTexture.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: BaseDevice.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkGr.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDashOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: Device.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: PathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBlitter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDraw.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkColorShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPicture.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPictureData.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAttachment.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPaint.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrClearOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: ClipStack.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkGraphics.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: DrawCommand.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendEquationIsAdvanced(GrBlendEquation)
106
107
static constexpr bool GrBlendModifiesDst(GrBlendEquation equation, GrBlendCoeff srcCoeff,
108
0
                                         GrBlendCoeff dstCoeff) {
109
0
    return (kAdd_GrBlendEquation != equation && kReverseSubtract_GrBlendEquation != equation) ||
110
0
           kZero_GrBlendCoeff != srcCoeff || kOne_GrBlendCoeff != dstCoeff;
111
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendModifiesDst(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
112
113
0
static constexpr bool GrBlendCoeffRefsConstant(const GrBlendCoeff coeff) {
114
0
    return coeff == kConstC_GrBlendCoeff || coeff == kIConstC_GrBlendCoeff;
115
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendCoeffRefsConstant(GrBlendCoeff)
116
117
static constexpr bool GrBlendShouldDisable(GrBlendEquation equation, GrBlendCoeff srcCoeff,
118
0
                                           GrBlendCoeff dstCoeff) {
119
0
    return (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
120
0
           kOne_GrBlendCoeff == srcCoeff && kZero_GrBlendCoeff == dstCoeff;
121
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendShouldDisable(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
122
123
/**
124
 * Advanced blend equations can always tweak alpha for coverage. (See GrCustomXfermode.cpp)
125
 *
126
 * For "add" and "reverse subtract" the blend equation with f=coverage is:
127
 *
128
 *   D' = f * (S * srcCoeff + D * dstCoeff) + (1-f) * D
129
 *      = f * S * srcCoeff + D * (f * dstCoeff + (1 - f))
130
 *
131
 * (Let srcCoeff be negative for reverse subtract.) We can tweak alpha for coverage when the
132
 * following relationship holds:
133
 *
134
 *   (f*S) * srcCoeff' + D * dstCoeff' == f * S * srcCoeff + D * (f * dstCoeff + (1 - f))
135
 *
136
 * (Where srcCoeff' and dstCoeff' have any reference to S pre-multiplied by f.)
137
 *
138
 * It's easy to see this works for the src term as long as srcCoeff' == srcCoeff (meaning srcCoeff
139
 * does not reference S). For the dst term, this will work as long as the following is true:
140
 *|
141
 *   dstCoeff' == f * dstCoeff + (1 - f)
142
 *   dstCoeff' == 1 - f * (1 - dstCoeff)
143
 *
144
 * By inspection we can see this will work as long as dstCoeff has a 1, and any other term in
145
 * dstCoeff references S.
146
 *
147
 * Moreover, if the blend doesn't modify the dst at all then it is ok to arbitrarily modify the src
148
 * color so folding in coverage is allowed.
149
 */
150
static constexpr bool GrBlendAllowsCoverageAsAlpha(GrBlendEquation equation,
151
                                                   GrBlendCoeff srcCoeff,
152
0
                                                   GrBlendCoeff dstCoeff) {
153
0
    return GrBlendEquationIsAdvanced(equation) ||
154
0
           !GrBlendModifiesDst(equation, srcCoeff, dstCoeff) ||
155
0
           ((kAdd_GrBlendEquation == equation || kReverseSubtract_GrBlendEquation == equation) &&
156
0
            !GrBlendCoeffRefsSrc(srcCoeff) &&
157
0
            (kOne_GrBlendCoeff == dstCoeff || kISC_GrBlendCoeff == dstCoeff ||
158
0
             kISA_GrBlendCoeff == dstCoeff));
159
0
}
Unexecuted instantiation: BackendSurfaceFactory.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextFactory.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTest.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: MemoryCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ProxyUtils.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TestOps.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmap.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvas.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCanvasPriv.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilter_Matrix.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkData.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDevice.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFlattenable.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageFilterTypes.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageGenerator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageInfo.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmap.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkModeColorFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPaint.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkReadBuffer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialImage.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSpecialSurface.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkStrikeSpec.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTextBlob.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVertices.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkWriteBuffer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkXfermode.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Lazy.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Raster.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLocalMatrixShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageGenerator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordedDrawable.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlobalInitialization_default.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLExpression.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLStatement.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DSLWriter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCaps.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrColorSpaceXform.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContext_Base.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawingManager.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFragmentProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGeometryProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpu.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuResource.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrImageContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpFlushState.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsRenderPass.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPersistentCacheUtils.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPipeline.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorAnalysis.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorSet.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProxyProvider.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRecordingContextPriv.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTargetProxy.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTaskCluster.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceAllocator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrResourceProvider.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRingBuffer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStagingBufferManager.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurface.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSurfaceProxy.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTexture.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureProxy.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureRenderTargetProxy.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureResolveRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrThreadSafeCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTransferFromRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWaitRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrWritePixelsRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrXferProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVATextureProxies.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBicubicEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlendFragmentProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCustomXfermode.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPorterDuffXferProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSkSLFP.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrYUVtoRGBEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasManager.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSDFMaskFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrikeCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlobCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLBlend.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLFragmentShaderBuilder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLProgramBuilder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLShaderBuilder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVarying.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSLVertexGeoBuilder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockGpu.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: BaseDevice.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGr.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_Gpu.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuBase.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImage_GpuYUVA.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurface_Gpu.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAuditTrail.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOpsTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAConvexPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AAHairLinePathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AALinearizingConvexPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DefaultPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasTextOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDashOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawVerticesOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRectOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrLatticeOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOvalOpFactory.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrQuadPerEdgeAA.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRegionOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowRRectOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelper.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSimpleMeshDrawOpHelperWithStencil.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathAtlasMgr.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSmallPathShapeData.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeRectOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextureOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SmallPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SoftwarePathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TriangulatingPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Device_drawTexture.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathRendererChain.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceDrawContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SurfaceFillContext_v1.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpu.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLGpuProgramCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLOpsRenderPass.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgram.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramDataManager.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLRenderTarget.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLSemaphore.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTexture.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLTextureRenderTarget.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLVertexArray.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLProgramBuilder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLShaderStringBuilder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBitmapDevice.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendMode.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendModeBlender.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlitter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurMF.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayList.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_atlas.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDraw_vertices.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkFont_serial.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGlyphRunPainter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGpuBlurUtils.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMaskFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMipmapAccessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRasterPipelineBlitter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRecordDraw.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkResourceCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkScalerContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkVMBlitter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicture.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureData.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureFlat.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPicturePlayback.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureRecord.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk1DPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: Sk2DPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkCornerPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDashPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDiscretePathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkEmbossMaskFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOpPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderMaskFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTableColorFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTrimPathEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPerlinNoiseShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGradientShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLinearGradient.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRadialGradient.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSweepGradient.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTwoPointConicalGradient.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkAlphaThresholdImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkArithmeticImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlendImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkBlurImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkColorFilterImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkComposeImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDisplacementMapImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDropShadowImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkImageImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkLightingImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMagnifierImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMatrixConvolutionImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMergeImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkMorphologyImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkOffsetImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPictureImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRuntimeImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkShaderImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkTileImageFilter.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAttachment.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBackendTextureImageGenerator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBufferAllocPool.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrContextThreadSafeProxy.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCopyRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDataUtils.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDefaultGeoProcFactory.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDirectContextPriv.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpAtlas.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrEagerVertexAllocator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFinishCallbacks.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGpuBuffer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMeshDrawTarget.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPaint.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProcessorUnitTest.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramDesc.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRenderTarget.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrSWMaskHelper.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBezierEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBitmapTextGeoProc.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrCoverageSetOpXP.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDisableColorXP.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDistanceFieldGeoProc.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGaussianConvolutionFragmentProcessor.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMatrixConvolutionEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrRRectEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrShadowGeoProc.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAATriangulator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTriangulator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGradientShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTextBlob.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrMockCaps.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrBlurUtils.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawOpTest.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: AtlasPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DashLinePathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrClearOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawAtlasPathOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDrawableOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrFillRRectOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: TessellationPathRenderer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasRenderTask.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: ClipStack.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StencilMaskHelper.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLAttachment.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLBuffer.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLCaps.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrGLUniformHandler.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkGraphics.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDynamicAtlas.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrOnFlushResourceProvider.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrConvexPolyEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrModulateAtlasCoverageEffect.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrAtlasInstancedHelper.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathInnerTriangulateOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathStencilCoverOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: PathTessellateOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: StrokeTessellateOp.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathCurveTessellator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathWedgeTessellator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeFixedCountTessellator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeHardwareTessellator.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_Hardware.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrPathTessellationShader_MiddleOut.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_HardwareImpl.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrStrokeTessellationShader_InstancedImpl.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrTessellationShader.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrVertexChunkArray.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzDDLThreading.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkDeferredDisplayListRecorder.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrDDLContext.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkRemoteGlyphCache.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: GrProgramInfo.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSurfaceCharacterization.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzCanvas.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DebugCanvas.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: DrawCommand.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFUtils.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkSVGDevice.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkPDFDevice.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: SkKeyedImage.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTriangulation.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzPathDeserialize.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
Unexecuted instantiation: FuzzTextBlobDeserialize.cpp:GrBlendAllowsCoverageAsAlpha(GrBlendEquation, GrBlendCoeff, GrBlendCoeff)
160
161
#endif