aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrRenderTargetContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrRenderTargetContext.h')
-rw-r--r--src/gpu/GrRenderTargetContext.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gpu/GrRenderTargetContext.h b/src/gpu/GrRenderTargetContext.h
index a73f4c9f8f..084e1530a4 100644
--- a/src/gpu/GrRenderTargetContext.h
+++ b/src/gpu/GrRenderTargetContext.h
@@ -135,6 +135,17 @@ public:
const SkMatrix& localMatrix);
/**
+ * Creates an op that draws a subrectangle of a texture. The passed color is modulated by the
+ * texture's color. 'srcRect' specifies the rectangle of the texture to draw. 'dstRect'
+ * specifies the rectangle to draw in local coords which will be transformed by 'viewMatrix' to
+ * device space. The edges of the rendered rectangle are not antialiased. This asserts that the
+ * view matrix does not have perspective.
+ */
+ void drawTextureAffine(const GrClip& clip, sk_sp<GrTextureProxy>, GrSamplerParams::FilterMode,
+ GrColor, const SkRect& srcRect, const SkRect& dstRect,
+ const SkMatrix& viewMatrix, sk_sp<GrColorSpaceXform>);
+
+ /**
* Draw a roundrect using a paint.
*
* @param paint describes how to color pixels.