2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkScalerContext_DEFINED
|
|
|
|
#define SkScalerContext_DEFINED
|
|
|
|
|
|
|
|
#include "SkMask.h"
|
2012-07-30 20:40:50 +00:00
|
|
|
#include "SkMaskGamma.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkMatrix.h"
|
|
|
|
#include "SkPaint.h"
|
|
|
|
|
2012-07-24 21:18:54 +00:00
|
|
|
#ifdef SK_BUILD_FOR_ANDROID
|
2012-07-30 20:40:50 +00:00
|
|
|
//For SkFontID
|
|
|
|
#include "SkTypeface.h"
|
2012-07-24 21:18:54 +00:00
|
|
|
#endif
|
|
|
|
|
2012-07-24 20:33:21 +00:00
|
|
|
struct SkGlyph;
|
2008-12-17 15:59:43 +00:00
|
|
|
class SkDescriptor;
|
|
|
|
class SkMaskFilter;
|
|
|
|
class SkPathEffect;
|
|
|
|
class SkRasterizer;
|
|
|
|
|
2012-07-30 20:40:50 +00:00
|
|
|
//The following typedef hides from the rest of the implementation the number of
|
|
|
|
//most significant bits to consider when creating mask gamma tables. Two bits
|
|
|
|
//per channel was chosen as a balance between fidelity (more bits) and cache
|
|
|
|
//sizes (fewer bits).
|
|
|
|
typedef SkTMaskGamma<2, 2, 2> SkMaskGamma;
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
class SkScalerContext {
|
|
|
|
public:
|
|
|
|
enum Flags {
|
2011-11-21 19:32:29 +00:00
|
|
|
kFrameAndFill_Flag = 0x0001,
|
|
|
|
kDevKernText_Flag = 0x0002,
|
|
|
|
kEmbeddedBitmapText_Flag = 0x0004,
|
|
|
|
kEmbolden_Flag = 0x0008,
|
|
|
|
kSubpixelPositioning_Flag = 0x0010,
|
|
|
|
kAutohinting_Flag = 0x0020,
|
|
|
|
kVertical_Flag = 0x0040,
|
2011-11-22 19:42:41 +00:00
|
|
|
|
2009-07-21 17:41:32 +00:00
|
|
|
// together, these two flags resulting in a two bit value which matches
|
|
|
|
// up with the SkPaint::Hinting enum.
|
2011-11-22 19:42:41 +00:00
|
|
|
kHinting_Shift = 7, // to shift into the other flags above
|
2011-11-21 19:32:29 +00:00
|
|
|
kHintingBit1_Flag = 0x0080,
|
|
|
|
kHintingBit2_Flag = 0x0100,
|
2011-11-22 19:42:41 +00:00
|
|
|
|
2011-06-27 16:44:46 +00:00
|
|
|
// these should only ever be set if fMaskFormat is LCD16 or LCD32
|
2011-11-21 19:32:29 +00:00
|
|
|
kLCD_Vertical_Flag = 0x0200, // else Horizontal
|
|
|
|
kLCD_BGROrder_Flag = 0x0400, // else RGB order
|
2011-11-22 19:42:41 +00:00
|
|
|
|
2012-01-18 17:06:35 +00:00
|
|
|
// Generate A8 from LCD source (for GDI), only meaningful if fMaskFormat is kA8
|
|
|
|
// Perhaps we can store this (instead) in fMaskFormat, in hight bit?
|
|
|
|
kGenA8FromLCD_Flag = 0x0800,
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
2011-11-22 19:42:41 +00:00
|
|
|
|
|
|
|
// computed values
|
2009-07-27 16:39:38 +00:00
|
|
|
enum {
|
2011-11-22 19:42:41 +00:00
|
|
|
kHinting_Mask = kHintingBit1_Flag | kHintingBit2_Flag,
|
2009-07-27 16:39:38 +00:00
|
|
|
};
|
2011-11-22 19:42:41 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
struct Rec {
|
2011-06-13 13:01:10 +00:00
|
|
|
uint32_t fOrigFontID;
|
2008-12-17 15:59:43 +00:00
|
|
|
uint32_t fFontID;
|
|
|
|
SkScalar fTextSize, fPreScaleX, fPreSkewX;
|
|
|
|
SkScalar fPost2x2[2][2];
|
|
|
|
SkScalar fFrameWidth, fMiterLimit;
|
2012-07-30 20:40:50 +00:00
|
|
|
|
|
|
|
//These describe the parameters to create (uniquely identify) the pre-blend.
|
2012-02-07 21:25:33 +00:00
|
|
|
uint32_t fLumBits;
|
2012-07-30 20:40:50 +00:00
|
|
|
uint8_t fDeviceGamma; //2.6, (0.0, 4.0) gamma, 0.0 for sRGB
|
|
|
|
uint8_t fPaintGamma; //2.6, (0.0, 4.0) gamma, 0.0 for sRGB
|
|
|
|
uint8_t fContrast; //0.8+1, [0.0, 1.0] artificial contrast
|
|
|
|
uint8_t fReservedAlign;
|
|
|
|
|
|
|
|
SkScalar getDeviceGamma() const {
|
|
|
|
return SkIntToScalar(fDeviceGamma) / (1 << 6);
|
|
|
|
}
|
|
|
|
void setDeviceGamma(SkScalar dg) {
|
|
|
|
SkASSERT(0 <= dg && dg < SkIntToScalar(4));
|
|
|
|
fDeviceGamma = SkScalarFloorToInt(dg * (1 << 6));
|
|
|
|
}
|
|
|
|
|
|
|
|
SkScalar getPaintGamma() const {
|
|
|
|
return SkIntToScalar(fPaintGamma) / (1 << 6);
|
|
|
|
}
|
|
|
|
void setPaintGamma(SkScalar pg) {
|
|
|
|
SkASSERT(0 <= pg && pg < SkIntToScalar(4));
|
|
|
|
fPaintGamma = SkScalarFloorToInt(pg * (1 << 6));
|
|
|
|
}
|
|
|
|
|
|
|
|
SkScalar getContrast() const {
|
|
|
|
return SkIntToScalar(fContrast) / ((1 << 8) - 1);
|
|
|
|
}
|
|
|
|
void setContrast(SkScalar c) {
|
|
|
|
SkASSERT(0 <= c && c <= SK_Scalar1);
|
|
|
|
fContrast = SkScalarRoundToInt(c * ((1 << 8) - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Causes the luminance color and contrast to be ignored, and the
|
|
|
|
* paint and device gamma to be effectively 1.0.
|
|
|
|
*/
|
|
|
|
void ignorePreBlend() {
|
|
|
|
setLuminanceColor(0x00000000);
|
|
|
|
setPaintGamma(SK_Scalar1);
|
|
|
|
setDeviceGamma(SK_Scalar1);
|
|
|
|
setContrast(0);
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
uint8_t fMaskFormat;
|
|
|
|
uint8_t fStrokeJoin;
|
2010-06-17 20:49:17 +00:00
|
|
|
uint16_t fFlags;
|
2010-01-04 23:56:43 +00:00
|
|
|
// Warning: when adding members note that the size of this structure
|
|
|
|
// must be a multiple of 4. SkDescriptor requires that its arguments be
|
|
|
|
// multiples of four and this structure is put in an SkDescriptor in
|
|
|
|
// SkPaint::MakeRec.
|
2009-07-21 17:41:32 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void getMatrixFrom2x2(SkMatrix*) const;
|
|
|
|
void getLocalMatrix(SkMatrix*) const;
|
|
|
|
void getSingleMatrix(SkMatrix*) const;
|
2009-07-21 17:41:32 +00:00
|
|
|
|
|
|
|
SkPaint::Hinting getHinting() const {
|
2011-11-22 19:42:41 +00:00
|
|
|
unsigned hint = (fFlags & kHinting_Mask) >> kHinting_Shift;
|
2011-11-21 19:46:00 +00:00
|
|
|
return static_cast<SkPaint::Hinting>(hint);
|
2009-07-21 17:41:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setHinting(SkPaint::Hinting hinting) {
|
2011-11-22 19:42:41 +00:00
|
|
|
fFlags = (fFlags & ~kHinting_Mask) | (hinting << kHinting_Shift);
|
|
|
|
}
|
2012-02-07 21:25:33 +00:00
|
|
|
|
|
|
|
SkMask::Format getFormat() const {
|
|
|
|
return static_cast<SkMask::Format>(fMaskFormat);
|
|
|
|
}
|
2012-07-30 20:40:50 +00:00
|
|
|
|
2012-02-10 22:01:45 +00:00
|
|
|
SkColor getLuminanceColor() const {
|
2012-02-07 21:25:33 +00:00
|
|
|
return fLumBits;
|
|
|
|
}
|
|
|
|
|
2012-02-10 22:01:45 +00:00
|
|
|
void setLuminanceColor(SkColor c) {
|
|
|
|
fLumBits = c;
|
2012-02-07 21:25:33 +00:00
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SkScalerContext(const SkDescriptor* desc);
|
|
|
|
virtual ~SkScalerContext();
|
|
|
|
|
2011-03-15 15:40:16 +00:00
|
|
|
SkMask::Format getMaskFormat() const {
|
|
|
|
return (SkMask::Format)fRec.fMaskFormat;
|
|
|
|
}
|
|
|
|
|
2012-01-03 19:43:20 +00:00
|
|
|
bool isSubpixel() const {
|
|
|
|
return SkToBool(fRec.fFlags & kSubpixelPositioning_Flag);
|
|
|
|
}
|
|
|
|
|
2009-03-17 17:59:53 +00:00
|
|
|
// remember our glyph offset/base
|
2008-12-17 15:59:43 +00:00
|
|
|
void setBaseGlyphCount(unsigned baseGlyphCount) {
|
|
|
|
fBaseGlyphCount = baseGlyphCount;
|
|
|
|
}
|
|
|
|
|
2009-03-17 17:59:53 +00:00
|
|
|
/** Return the corresponding glyph for the specified unichar. Since contexts
|
|
|
|
may be chained (under the hood), the glyphID that is returned may in
|
|
|
|
fact correspond to a different font/context. In that case, we use the
|
|
|
|
base-glyph-count to know how to translate back into local glyph space.
|
|
|
|
*/
|
2011-11-22 19:42:41 +00:00
|
|
|
uint16_t charToGlyphID(SkUnichar uni);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2010-01-08 14:07:42 +00:00
|
|
|
/** Map the glyphID to its glyph index, and then to its char code. Unmapped
|
|
|
|
glyphs return zero.
|
|
|
|
*/
|
|
|
|
SkUnichar glyphIDToChar(uint16_t glyphID);
|
|
|
|
|
2011-03-04 19:04:57 +00:00
|
|
|
unsigned getGlyphCount() { return this->generateGlyphCount(); }
|
2008-12-17 15:59:43 +00:00
|
|
|
void getAdvance(SkGlyph*);
|
|
|
|
void getMetrics(SkGlyph*);
|
|
|
|
void getImage(const SkGlyph&);
|
|
|
|
void getPath(const SkGlyph&, SkPath*);
|
|
|
|
void getFontMetrics(SkPaint::FontMetrics* mX,
|
|
|
|
SkPaint::FontMetrics* mY);
|
|
|
|
|
2012-02-15 18:49:15 +00:00
|
|
|
#ifdef SK_BUILD_FOR_ANDROID
|
|
|
|
unsigned getBaseGlyphCount(SkUnichar charCode);
|
2012-06-01 12:52:26 +00:00
|
|
|
|
|
|
|
// This function must be public for SkTypeface_android.h, but should not be
|
|
|
|
// called by other callers
|
|
|
|
SkFontID findTypefaceIdForChar(SkUnichar uni) {
|
|
|
|
SkScalerContext* ctx = this;
|
|
|
|
while (NULL != ctx) {
|
|
|
|
if (ctx->generateCharToGlyph(uni)) {
|
|
|
|
return ctx->fRec.fFontID;
|
|
|
|
}
|
|
|
|
ctx = ctx->getNextContext();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2012-02-15 18:49:15 +00:00
|
|
|
#endif
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static inline void MakeRec(const SkPaint&, const SkMatrix*, Rec* rec);
|
2012-07-30 20:40:50 +00:00
|
|
|
static inline void PostMakeRec(const SkPaint&, Rec*);
|
2012-03-01 22:32:51 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static SkScalerContext* Create(const SkDescriptor*);
|
2012-07-30 20:40:50 +00:00
|
|
|
static SkMaskGamma::PreBlend GetMaskPreBlend(const Rec& rec);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
Rec fRec;
|
|
|
|
unsigned fBaseGlyphCount;
|
|
|
|
|
2011-03-04 19:04:57 +00:00
|
|
|
virtual unsigned generateGlyphCount() = 0;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual uint16_t generateCharToGlyph(SkUnichar) = 0;
|
|
|
|
virtual void generateAdvance(SkGlyph*) = 0;
|
|
|
|
virtual void generateMetrics(SkGlyph*) = 0;
|
2012-07-30 20:40:50 +00:00
|
|
|
virtual void generateImage(const SkGlyph&, SkMaskGamma::PreBlend* maskPreBlend) = 0;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void generatePath(const SkGlyph&, SkPath*) = 0;
|
|
|
|
virtual void generateFontMetrics(SkPaint::FontMetrics* mX,
|
|
|
|
SkPaint::FontMetrics* mY) = 0;
|
2010-01-08 14:07:42 +00:00
|
|
|
// default impl returns 0, indicating failure.
|
|
|
|
virtual SkUnichar generateGlyphToChar(uint16_t);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-08-05 21:40:26 +00:00
|
|
|
void forceGenerateImageFromPath() { fGenerateImageFromPath = true; }
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
private:
|
|
|
|
SkPathEffect* fPathEffect;
|
|
|
|
SkMaskFilter* fMaskFilter;
|
|
|
|
SkRasterizer* fRasterizer;
|
|
|
|
|
2011-08-05 21:40:26 +00:00
|
|
|
// if this is set, we draw the image from a path, rather than
|
|
|
|
// calling generateImage.
|
|
|
|
bool fGenerateImageFromPath;
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void internalGetPath(const SkGlyph& glyph, SkPath* fillPath,
|
|
|
|
SkPath* devPath, SkMatrix* fillToDevMatrix);
|
|
|
|
|
2009-03-17 17:59:53 +00:00
|
|
|
// return the next context, treating fNextContext as a cache of the answer
|
|
|
|
SkScalerContext* getNextContext();
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2009-03-17 17:59:53 +00:00
|
|
|
// returns the right context from our link-list for this glyph. If no match
|
|
|
|
// is found, just returns the original context (this)
|
|
|
|
SkScalerContext* getGlyphContext(const SkGlyph& glyph);
|
|
|
|
|
|
|
|
// link-list of context, to handle missing chars. null-terminated.
|
|
|
|
SkScalerContext* fNextContext;
|
2012-07-30 20:40:50 +00:00
|
|
|
|
|
|
|
// converts linear masks to gamma correcting masks.
|
|
|
|
SkMaskGamma::PreBlend fMaskPreBlend;
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define kRec_SkDescriptorTag SkSetFourByteTag('s', 'r', 'e', 'c')
|
|
|
|
#define kPathEffect_SkDescriptorTag SkSetFourByteTag('p', 't', 'h', 'e')
|
|
|
|
#define kMaskFilter_SkDescriptorTag SkSetFourByteTag('m', 's', 'k', 'f')
|
|
|
|
#define kRasterizer_SkDescriptorTag SkSetFourByteTag('r', 'a', 's', 't')
|
|
|
|
|
2011-08-23 21:30:47 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
enum SkAxisAlignment {
|
|
|
|
kNone_SkAxisAlignment,
|
|
|
|
kX_SkAxisAlignment,
|
|
|
|
kY_SkAxisAlignment
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the axis (if any) that the baseline for horizontal text will land on
|
|
|
|
* after running through the specified matrix.
|
|
|
|
*
|
|
|
|
* As an example, the identity matrix will return kX_SkAxisAlignment
|
|
|
|
*/
|
2011-08-24 15:38:46 +00:00
|
|
|
SkAxisAlignment SkComputeAxisAlignmentForHText(const SkMatrix& matrix);
|
2011-08-23 21:30:47 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#endif
|
|
|
|
|