aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/mock
diff options
context:
space:
mode:
Diffstat (limited to 'include/gpu/mock')
-rw-r--r--include/gpu/mock/GrMockTypes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/gpu/mock/GrMockTypes.h b/include/gpu/mock/GrMockTypes.h
index 81eeaba8b6..3ad0fc3b9a 100644
--- a/include/gpu/mock/GrMockTypes.h
+++ b/include/gpu/mock/GrMockTypes.h
@@ -16,8 +16,8 @@ struct GrMockTextureInfo {
/**
* A pointer to this type is used as the GrBackendContext when creating a Mock GrContext. It can be
- * used to specificy capability options for the mock context. If nullptr is used a default
- * constructed GrMockOptions is used.
+ * used to specify capability options for the mock context. If nullptr is used a default constructed
+ * GrMockOptions is used.
*/
struct GrMockOptions {
GrMockOptions() {
@@ -48,6 +48,7 @@ struct GrMockOptions {
bool fIntegerSupport = false;
bool fFlatInterpolationSupport = false;
int fMaxVertexSamplers = 0;
+ bool fShaderDerivativeSupport = true;
};
#endif