Index: src/gpu/gl/GrGLShaderBuilder.h |
=================================================================== |
--- src/gpu/gl/GrGLShaderBuilder.h (revision 8966) |
+++ src/gpu/gl/GrGLShaderBuilder.h (working copy) |
@@ -259,7 +259,7 @@ |
/** Returns the color of the destination pixel. This may be NULL if no effect advertised |
that it will read the destination. */ |
- const char* dstColor() const; |
+ const char* dstColor(); |
/** |
* Are explicit local coordinates provided as input to the vertex shader. |
@@ -346,7 +346,9 @@ |
* Features that should only be enabled by GrGLShaderBuilder itself. |
*/ |
enum GLSLPrivateFeature { |
- kFragCoordConventions_GLSLPrivateFeature = kLastGLSLFeature + 1 |
+ kFragCoordConventions_GLSLPrivateFeature = kLastGLSLFeature + 1, |
+ kEXTShaderFramebufferFetch_GLSLPrivateFeature, |
+ kNVShaderFramebufferFetch_GLSLPrivateFeature, |
}; |
bool enablePrivateFeature(GLSLPrivateFeature); |