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

/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c82 int ptsz; /* size in points */ member in struct:FTScalerContext
371 double dmat[4], ptsz; local
382 ptsz = euclidianDistance(dmat[2], dmat[3]); //i.e. y-size
383 if (ptsz < 1.0) {
385 ptsz = 1.0;
387 context->ptsz = (int)(ptsz * 64);
388 context->transform.xx = FloatToFTFixed((float)dmat[0]/ptsz);
389 context->transform.yx = -FloatToFTFixed((float)dmat[1]/ptsz);
390 context->transform.xy = -FloatToFTFixed((float)dmat[2]/ptsz);
[all...]

Completed in 31 milliseconds