Searched refs:dtx (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DAnchorTables.cpp114 const DeviceTable *dtx = (const DeviceTable *) ((char *) this + dtxOffset); local
115 le_int16 adjx = dtx->getAdjustment((le_int16) fontInstance->getXPixelsPerEm());
/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphLayout.java214 public AffineTransform dtx; field in class:GlyphLayout.SDCache
227 dtx = frc.getTransform();
228 dtx.setTransform(dtx.getScaleX(), dtx.getShearY(),
229 dtx.getShearX(), dtx.getScaleY(),
231 if (!dtx.isIdentity()) {
233 invdtx = dtx.createInverse();
249 gtx.preConcatenate(dtx);
[all...]
H A DStandardGlyphVector.java152 private AffineTransform dtx; // device transform used for strike calculations, no translation field in class:StandardGlyphVector
153 private AffineTransform invdtx; // inverse of dtx or null if dtx is identity
902 // need positions if the rendering dtx is different from the frctx.
934 return gti.setupGlyphImages(images, positions, dtx);
941 if (dtx.isIdentity()) {
944 dtx.transform(this.positions, 0, positions, 0, glyphs.length);
957 // we strip it out when we set the dtx. Basically nothing uses the
989 if (!matchTX(devTX, dtx)) {
996 if (!equalNonTranslateTX(dtx, t
1700 create(StandardGlyphVector sgv, AffineTransform dtx, AffineTransform gtx) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java1585 double dtx = transform.getTranslateX();
1587 transX = (int) Math.floor(dtx + 0.5);
1589 if (dtx == transX && dty == transY) {

Completed in 45 milliseconds