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

/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DFontInfo.java60 public String mtx(double[] matrix) { method in class:FontInfo
80 "devTx="+mtx(devTx)+", "+
81 "glyphTx="+mtx(glyphTx)+", "+
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageAffine.c34 * const mlib_d64 *mtx,
41 * mtx Transformation matrix, where
42 * mtx[0] holds a; mtx[1] holds b;
43 * mtx[2] holds tx; mtx[3] holds c;
44 * mtx[4] holds d; mtx[5] holds ty.
149 const mlib_d64 *mtx,
194 kw, kw, kw1, kw1, edge, mtx, MLIB_SHIF
147 mlib_ImageAffine_alltypes(mlib_image *dst, const mlib_image *src, const mlib_d64 *mtx, mlib_filter filter, mlib_edge edge, const void *colormap) argument
340 mlib_ImageAffine(mlib_image *dst, const mlib_image *src, const mlib_d64 *mtx, mlib_filter filter, mlib_edge edge) argument
[all...]
H A Dmlib_ImageScanPoly.c48 const mlib_d64 *mtx,
66 mlib_d64 a = mtx[0], b = mtx[1], tx = mtx[2], c = mtx[3], d = mtx[4], ty = mtx[5];
38 mlib_AffineEdges(mlib_affine_param *param, const mlib_image *dst, const mlib_image *src, void *buff_lcl, mlib_s32 buff_size, mlib_s32 kw, mlib_s32 kh, mlib_s32 kw1, mlib_s32 kh1, mlib_edge edge, const mlib_d64 *mtx, mlib_s32 shiftx, mlib_s32 shifty) argument
H A Dmlib_ImageAffine.h84 const mlib_d64 *mtx,
251 const mlib_d64 *mtx,
H A Dawt_ImagingLib.c748 mlib_d64 mtx[6]; local
802 mtx[0] = matrix[0];
803 mtx[1] = matrix[2];
804 mtx[2] = matrix[4];
805 mtx[3] = matrix[1];
806 mtx[4] = matrix[3];
807 mtx[5] = matrix[5];
882 if ((status = (*sMlibFns[MLIB_AFFINE].fptr)(dst, src, mtx, filter,
956 mlib_d64 mtx[6]; local
1022 mtx[
[all...]
H A Dmlib_image_proto.h1427 const mlib_d64 *mtx,
1437 const mlib_d64 *mtx,
1448 const mlib_d64 *mtx,
1458 const mlib_d64 *mtx,
1468 const mlib_d64 *mtx,
1478 const mlib_d64 *mtx,
1489 const mlib_d64 *mtx,
1499 const mlib_d64 *mtx,
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DAffineTransformOp.java242 double[] mtx = new double[4];
243 xform.getMatrix(mtx);
246 needTrans = (mtx[0] != (int)mtx[0] || mtx[3] != (int)mtx[3]);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImage.java851 double[] mtx = new double[4];
852 tx.getMatrix(mtx);
855 needTrans = (mtx[0] != (int)mtx[0] || mtx[3] != (int)mtx[3]);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java744 public static boolean isRotated(double [] mtx) { argument
745 if ((mtx[0] == mtx[3]) &&
746 (mtx[1] == 0.0) &&
747 (mtx[2] == 0.0) &&
748 (mtx[0] > 0.0))

Completed in 61 milliseconds