| Index: src/gpu/glsl/GrGLSLPrimitiveProcessor.h
|
| diff --git a/src/gpu/glsl/GrGLSLPrimitiveProcessor.h b/src/gpu/glsl/GrGLSLPrimitiveProcessor.h
|
| index fc0c4788b58b183564d52090cfe0a6e40b822351..4bd5fefd9f4d93c80cbfe75957fc441fe5a04fc9 100644
|
| --- a/src/gpu/glsl/GrGLSLPrimitiveProcessor.h
|
| +++ b/src/gpu/glsl/GrGLSLPrimitiveProcessor.h
|
| @@ -43,6 +43,7 @@ public:
|
| const char* outputColor,
|
| const char* outputCoverage,
|
| const SamplerArray& texSamplers,
|
| + const SamplerArray& bufferSamplers,
|
| const TransformsIn& transformsIn,
|
| TransformsOut* transformsOut)
|
| : fVertBuilder(vertBuilder)
|
| @@ -54,6 +55,7 @@ public:
|
| , fOutputColor(outputColor)
|
| , fOutputCoverage(outputCoverage)
|
| , fTexSamplers(texSamplers)
|
| + , fBufferSamplers(bufferSamplers)
|
| , fTransformsIn(transformsIn)
|
| , fTransformsOut(transformsOut) {}
|
| GrGLSLVertexBuilder* fVertBuilder;
|
| @@ -65,6 +67,7 @@ public:
|
| const char* fOutputColor;
|
| const char* fOutputCoverage;
|
| const SamplerArray& fTexSamplers;
|
| + const SamplerArray& fBufferSamplers;
|
| const TransformsIn& fTransformsIn;
|
| TransformsOut* fTransformsOut;
|
| };
|
|
|