| Index: src/gpu/gl/GrGLCaps.h
|
| diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h
|
| index 724bab625886867ec172ae9abe7b10e9d9cc1eed..06deaafae10676159c479a0a1abb21250c10e8e4 100644
|
| --- a/src/gpu/gl/GrGLCaps.h
|
| +++ b/src/gpu/gl/GrGLCaps.h
|
| @@ -342,6 +342,8 @@ public:
|
| */
|
| bool srgbWriteControl() const { return fSRGBWriteControl; }
|
|
|
| + bool mipMapLevelAndLodControlSupport() const { return fMipMapLevelAndLodControlSupport; }
|
| +
|
| /**
|
| * Returns a string containing the caps info.
|
| */
|
| @@ -418,6 +420,7 @@ private:
|
| bool fExternalTextureSupport : 1;
|
| bool fRectangleTextureSupport : 1;
|
| bool fTextureSwizzleSupport : 1;
|
| + bool fMipMapLevelAndLodControlSupport : 1;
|
|
|
| BlitFramebufferSupport fBlitFramebufferSupport;
|
|
|
|
|