Index: src/gpu/GrXferProcessor.cpp |
diff --git a/src/gpu/GrXferProcessor.cpp b/src/gpu/GrXferProcessor.cpp |
index a95445e287825db5934a55f27f7c4cf88da104ee..655fdfae7b0b69002ef444a3ed753cd26958b198 100644 |
--- a/src/gpu/GrXferProcessor.cpp |
+++ b/src/gpu/GrXferProcessor.cpp |
@@ -73,7 +73,7 @@ void GrXferProcessor::getBlendInfo(BlendInfo* blendInfo) const { |
} |
} |
-void GrXferProcessor::getGLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const { |
+void GrXferProcessor::getGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const { |
uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; |
if (key) { |
if (const GrTexture* dstTexture = this->getDstTexture()) { |
@@ -90,7 +90,7 @@ void GrXferProcessor::getGLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBu |
} |
} |
b->add32(key); |
- this->onGetGLProcessorKey(caps, b); |
+ this->onGetGLSLProcessorKey(caps, b); |
} |
GrXferBarrierType GrXferProcessor::xferBarrierType(const GrRenderTarget* rt, |