aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPipeline.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrPipeline.h')
-rw-r--r--src/gpu/GrPipeline.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gpu/GrPipeline.h b/src/gpu/GrPipeline.h
index e91baeb35e..bf8ca8a725 100644
--- a/src/gpu/GrPipeline.h
+++ b/src/gpu/GrPipeline.h
@@ -97,7 +97,9 @@ public:
bool readsFragPosition() const { return fReadsFragPosition; }
- const GrPipelineInfo& getInitBatchTracker() const { return fInitBT; }
+ const GrPipelineInfo& infoForPrimitiveProcessor() const {
+ return fInfoForPrimitiveProcessor;
+ }
private:
/**
@@ -135,7 +137,7 @@ private:
ProgramXferProcessor fXferProcessor;
FragmentStageArray fFragmentStages;
bool fReadsFragPosition;
- GrPipelineInfo fInitBT;
+ GrPipelineInfo fInfoForPrimitiveProcessor;
// This function is equivalent to the offset into fFragmentStages where coverage stages begin.
int fNumColorStages;