| Index: src/gpu/effects/GrDisableColorXP.cpp
|
| diff --git a/src/gpu/effects/GrDisableColorXP.cpp b/src/gpu/effects/GrDisableColorXP.cpp
|
| index 3e1024b16217771b9b613caa16d832acdbb27527..0f3382f8fdb08731fa27feb2c6b36d74df4fa655 100644
|
| --- a/src/gpu/effects/GrDisableColorXP.cpp
|
| +++ b/src/gpu/effects/GrDisableColorXP.cpp
|
| @@ -10,6 +10,7 @@
|
| #include "gl/GrGLXferProcessor.h"
|
| #include "gl/builders/GrGLFragmentShaderBuilder.h"
|
| #include "gl/builders/GrGLProgramBuilder.h"
|
| +#include "glsl/GrGLSLProgramDataManager.h"
|
|
|
| /**
|
| * This xfer processor disables color writing. Thus color and coverage and ignored and no blending
|
| @@ -66,7 +67,7 @@ private:
|
| fsBuilder->codeAppendf("%s = vec4(0);", args.fOutputPrimary);
|
| }
|
|
|
| - void onSetData(const GrGLProgramDataManager&, const GrXferProcessor&) override {}
|
| + void onSetData(const GrGLSLProgramDataManager&, const GrXferProcessor&) override {}
|
|
|
| typedef GrGLXferProcessor INHERITED;
|
| };
|
|
|