Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: src/gpu/GrPipelineBuilder.h

Issue 2215323003: Start using RenderTargetProxy (omnibus) (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/GrPipeline.cpp ('k') | src/gpu/GrRenderTargetContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrPipelineBuilder.h
diff --git a/src/gpu/GrPipelineBuilder.h b/src/gpu/GrPipelineBuilder.h
index cb69756b693c2907dcb252f857ce6390454cf5fb..01e6485d32c814a2c9608ab8020778747a856acc 100644
--- a/src/gpu/GrPipelineBuilder.h
+++ b/src/gpu/GrPipelineBuilder.h
@@ -98,6 +98,18 @@ public:
params));
}
+ //---
+ void addColorTextureProcessor(GrTextureProxy* texture, const SkMatrix& matrix);
+ void addCoverageTextureProcessor(GrTextureProxy* texture, const SkMatrix& matrix);
+
+ void addColorTextureProcessor(GrTextureProxy* texture,
+ const SkMatrix& matrix,
+ const GrTextureParams& params);
+ void addCoverageTextureProcessor(GrTextureProxy* texture,
+ const SkMatrix& matrix,
+ const GrTextureParams& params);
+ //---
+
/**
* When this object is destroyed it will remove any color/coverage FPs from the pipeline builder
* that were added after its constructor.
« no previous file with comments | « src/gpu/GrPipeline.cpp ('k') | src/gpu/GrRenderTargetContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698