Index: src/gpu/GrPipelineBuilder.h |
diff --git a/src/gpu/GrPipelineBuilder.h b/src/gpu/GrPipelineBuilder.h |
index 4f9016ba611e081e84ed2caecd52d0b62906f02a..22ad865f417f08ad419069d94c3f58066d3585d6 100644 |
--- a/src/gpu/GrPipelineBuilder.h |
+++ b/src/gpu/GrPipelineBuilder.h |
@@ -38,15 +38,15 @@ public: |
*this = pipelineBuilder; |
} |
- virtual ~GrPipelineBuilder(); |
- |
/** |
- * Initializes the GrPipelineBuilder based on a GrPaint, view matrix and render target. Note |
+ * Initializes the GrPipelineBuilder based on a GrPaint, render target, and clip. Note |
* that GrPipelineBuilder encompasses more than GrPaint. Aspects of GrPipelineBuilder that have |
* no GrPaint equivalents are set to default values with the exception of vertex attribute state |
* which is unmodified by this function and clipping which will be enabled. |
*/ |
- void setFromPaint(const GrPaint&, GrRenderTarget*, const GrClip&); |
+ GrPipelineBuilder(const GrPaint&, GrRenderTarget*, const GrClip&); |
+ |
+ virtual ~GrPipelineBuilder(); |
/////////////////////////////////////////////////////////////////////////// |
/// @name Fragment Processors |