2010-12-22 21:39:39 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2010-12-22 21:39:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
#ifndef GrTextContext_DEFINED
|
|
|
|
#define GrTextContext_DEFINED
|
|
|
|
|
|
|
|
#include "GrGlyph.h"
|
2011-02-16 16:12:19 +00:00
|
|
|
#include "GrPaint.h"
|
2011-05-10 13:52:42 +00:00
|
|
|
#include "GrMatrix.h"
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
struct GrGpuTextVertex;
|
2010-12-22 21:39:39 +00:00
|
|
|
class GrContext;
|
|
|
|
class GrTextStrike;
|
|
|
|
class GrFontScaler;
|
2011-02-22 20:34:01 +00:00
|
|
|
class GrDrawTarget;
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
class GrTextContext {
|
|
|
|
public:
|
2011-01-21 21:03:59 +00:00
|
|
|
GrTextContext(GrContext*,
|
|
|
|
const GrPaint& paint,
|
|
|
|
const GrMatrix* extMatrix = NULL);
|
2010-12-22 21:39:39 +00:00
|
|
|
~GrTextContext();
|
|
|
|
|
|
|
|
void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top,
|
|
|
|
GrFontScaler*);
|
|
|
|
|
|
|
|
void flush(); // optional; automatically called by destructor
|
|
|
|
|
|
|
|
private:
|
2011-01-24 17:41:47 +00:00
|
|
|
GrPaint fPaint;
|
|
|
|
GrVertexLayout fVertexLayout;
|
2010-12-22 21:39:39 +00:00
|
|
|
GrContext* fContext;
|
|
|
|
GrDrawTarget* fDrawTarget;
|
|
|
|
|
|
|
|
GrMatrix fExtMatrix;
|
|
|
|
GrFontScaler* fScaler;
|
|
|
|
GrTextStrike* fStrike;
|
|
|
|
|
|
|
|
inline void flushGlyphs();
|
2011-06-13 21:55:32 +00:00
|
|
|
void setupDrawTarget();
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
kMinRequestedGlyphs = 1,
|
|
|
|
kDefaultRequestedGlyphs = 64,
|
|
|
|
kMinRequestedVerts = kMinRequestedGlyphs * 4,
|
|
|
|
kDefaultRequestedVerts = kDefaultRequestedGlyphs * 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
GrGpuTextVertex* fVertices;
|
2011-01-21 21:03:59 +00:00
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
int32_t fMaxVertices;
|
|
|
|
GrTexture* fCurrTexture;
|
|
|
|
int fCurrVertex;
|
|
|
|
|
|
|
|
GrIRect fClipRect;
|
|
|
|
GrMatrix fOrigViewMatrix; // restore previous viewmatrix
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|