aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrTextContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gpu/GrTextContext.h')
-rw-r--r--include/gpu/GrTextContext.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/gpu/GrTextContext.h b/include/gpu/GrTextContext.h
index 83d420be46..6b28b79efc 100644
--- a/include/gpu/GrTextContext.h
+++ b/include/gpu/GrTextContext.h
@@ -11,9 +11,9 @@
#ifndef GrTextContext_DEFINED
#define GrTextContext_DEFINED
+#include "GrContext.h"
#include "GrGlyph.h"
#include "GrPaint.h"
-#include "GrMatrix.h"
struct GrGpuTextVertex;
class GrContext;
@@ -50,14 +50,14 @@ private:
kDefaultRequestedVerts = kDefaultRequestedGlyphs * 4,
};
- GrGpuTextVertex* fVertices;
+ GrGpuTextVertex* fVertices;
- int32_t fMaxVertices;
- GrTexture* fCurrTexture;
- int fCurrVertex;
+ int32_t fMaxVertices;
+ GrTexture* fCurrTexture;
+ int fCurrVertex;
- GrIRect fClipRect;
- GrMatrix fOrigViewMatrix; // restore previous viewmatrix
+ GrIRect fClipRect;
+ GrContext::AutoMatrix fAutoMatrix;
};
#endif