Chromium Code Reviews| Index: src/gpu/gl/GrGLCaps.h |
| diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h |
| index 80a3577db3067addc4c247156829508e8851102d..5530ef385ebbe5595fd7fd2c2cb7c54279f8fc42 100644 |
| --- a/src/gpu/gl/GrGLCaps.h |
| +++ b/src/gpu/gl/GrGLCaps.h |
| @@ -263,6 +263,7 @@ public: |
| bool rgba8888PixelsOpsAreSlow() const { return fRGBA8888PixelsOpsAreSlow; } |
| bool partialFBOReadIsSlow() const { return fPartialFBOReadIsSlow; } |
| + bool bindUniformLocation() const { return fBindUniformLocation; } |
|
bsalomon
2015/09/30 20:22:23
I think this should be grouped with all the *Suppo
|
| GrGLSLCaps* glslCaps() const { return reinterpret_cast<GrGLSLCaps*>(fShaderCaps.get()); } |
| @@ -360,6 +361,7 @@ private: |
| bool fSRGBWriteControl : 1; |
| bool fRGBA8888PixelsOpsAreSlow : 1; |
| bool fPartialFBOReadIsSlow : 1; |
| + bool fBindUniformLocation : 1; |
| struct ReadPixelsSupportedFormat { |
| GrGLenum fFormat; |