Searched defs:glyphTx (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DFontInfo.java51 public double[] glyphTx; field in class:FontInfo
81 "glyphTx="+mtx(glyphTx)+", "+
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontStrikeDesc.java65 * for metrics. Its not used otherwise, as the glyphTx is the important
72 AffineTransform glyphTx; // all of ptSize, Font tx and Graphics tx. field in class:FontStrikeDesc
82 hashCode = glyphTx.hashCode() + devTx.hashCode() + valuemask;
91 desc.glyphTx.equals(this.glyphTx) &&
203 glyphTx = at; // not cloning glyphTx. Callers trusted to not mutate it.
233 glyphTx = (AffineTransform)desc.glyphTx.clone();
244 " devTx="+devTx+ " devTx.FontTx.ptSize="+glyphTx;
[all...]
H A DFont2D.java239 AffineTransform glyphTx = (AffineTransform)devTx.clone();
240 glyphTx.scale(ptSize, ptSize);
242 glyphTx.concatenate(font.getTransform());
244 if (glyphTx.getTranslateX() != 0 || glyphTx.getTranslateY() != 0) {
245 glyphTx.setTransform(glyphTx.getScaleX(),
246 glyphTx.getShearY(),
247 glyphTx.getShearX(),
248 glyphTx
256 getStrike(Font font, AffineTransform devTx, AffineTransform glyphTx, int aa, int fm) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrike.java38 double[] glyphTx,
104 final double[] glyphTx = new double[6];
105 desc.glyphTx.getMatrix(glyphTx);
124 glyphTx, invDevTxMatrix, aaHint, fmHint);
152 metrics.convertToUserSpace(desc.glyphTx);
165 double glyphScaleX = desc.glyphTx.getScaleX();
169 glyphScaleX = Math.sqrt(desc.glyphTx.getDeterminant());
185 advance *= desc.glyphTx.getScaleX();
201 if (!desc.glyphTx
37 createNativeStrikePtr(long nativeFontPtr, double[] glyphTx, double[] invDevTxMatrix, int aaHint, int fmHint) argument
[all...]

Completed in 40 milliseconds