| Index: src/gpu/gl/GrGLCaps.h
|
| diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h
|
| index 80a3577db3067addc4c247156829508e8851102d..105549fc4ec50362e573b99201087bace607f110 100644
|
| --- a/src/gpu/gl/GrGLCaps.h
|
| +++ b/src/gpu/gl/GrGLCaps.h
|
| @@ -236,6 +236,8 @@ public:
|
|
|
| bool bindFragDataLocationSupport() const { return fBindFragDataLocationSupport; }
|
|
|
| + bool bindUniformLocationSupport() const { return fBindUniformLocationSupport; }
|
| +
|
| /**
|
| * Is there support for enabling/disabling sRGB writes for sRGB-capable color attachments?
|
| * If false this does not mean sRGB is not supported but rather that if it is supported
|
| @@ -360,6 +362,7 @@ private:
|
| bool fSRGBWriteControl : 1;
|
| bool fRGBA8888PixelsOpsAreSlow : 1;
|
| bool fPartialFBOReadIsSlow : 1;
|
| + bool fBindUniformLocationSupport : 1;
|
|
|
| struct ReadPixelsSupportedFormat {
|
| GrGLenum fFormat;
|
|
|