diff options
Diffstat (limited to 'src/gpu/gl/GrGLUniformManager.h')
-rw-r--r-- | src/gpu/gl/GrGLUniformManager.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpu/gl/GrGLUniformManager.h b/src/gpu/gl/GrGLUniformManager.h index e9856c6ea3..8f435d3037 100644 --- a/src/gpu/gl/GrGLUniformManager.h +++ b/src/gpu/gl/GrGLUniformManager.h @@ -15,6 +15,7 @@ #include "SkTArray.h" class GrGLContextInfo; +class SkMatrix; /** Manages a program's uniforms. */ @@ -47,6 +48,9 @@ public: void setMatrix3fv(UniformHandle, int offset, int arrayCount, const GrGLfloat matrices[]) const; void setMatrix4fv(UniformHandle, int offset, int arrayCount, const GrGLfloat matrices[]) const; + // convenience method for uploading a SkMatrix to a 3x3 matrix uniform + void setSkMatrix(UniformHandle, const SkMatrix&) const; + struct BuilderUniform { GrGLShaderVar fVariable; uint32_t fVisibility; |