Lines Matching defs:frc

97  * the frc.  When the frc is scaled appropriately, the advances are
98 * fine. FM or a large frc (high numbers) make the advances right.
101 * renders as AA if aa is set in its frc, and as non-aa if aa is not
102 * set in its frc.
138 private FontRenderContext frc;
162 public StandardGlyphVector(Font font, String str, FontRenderContext frc) {
163 init(font, str.toCharArray(), 0, str.length(), frc, UNINITIALIZED_FLAGS);
166 public StandardGlyphVector(Font font, char[] text, FontRenderContext frc) {
167 init(font, text, 0, text.length, frc, UNINITIALIZED_FLAGS);
171 FontRenderContext frc) {
172 init(font, text, start, count, frc, UNINITIALIZED_FLAGS);
184 public StandardGlyphVector(Font font, FontRenderContext frc, int[] glyphs, float[] positions,
186 initGlyphVector(font, frc, glyphs, positions, indices, flags);
201 FontStrike strike = f2d.getStrike(font, frc);
220 public void initGlyphVector(Font font, FontRenderContext frc, int[] glyphs, float[] positions,
223 this.frc = frc;
233 public StandardGlyphVector(Font font, CharacterIterator iter, FontRenderContext frc) {
241 init(font, text, 0, text.length, frc, UNINITIALIZED_FLAGS);
244 public StandardGlyphVector(Font font, int[] glyphs, FontRenderContext frc) {
248 this.frc = frc;
273 FontRenderContext frc = gv.getFontRenderContext();
274 frc = new FontRenderContext(frc.getTransform(),
276 frc.getFractionalMetricsHint());
277 return new StandardGlyphVector(gv, frc);
295 return this.frc;
382 LineMetrics lm = font.getLineMetrics("", frc);
655 if (!frc.equals(other.frc)) {
878 renderFRC = frc;
892 throw new IllegalArgumentException("must be able to invert frc transform");
1036 private StandardGlyphVector(GlyphVector gv, FontRenderContext frc) {
1038 this.frc = frc;
1094 FontRenderContext frc, int flags) {
1101 this.frc = frc;
1139 frctx = frc.getTransform();
1195 private Rectangle getGlyphsPixelBounds(FontRenderContext frc, float x, float y, int start, int count) {
1199 if (frc == null || frc.equals(this.frc)) {
1202 tx = frc.getTransform();
1579 * one in the frc or the rendering transform.
1718 Object aaHint = sgv.frc.getAntiAliasingHint();
1738 (sgv.frc.getFractionalMetricsHint());
1839 buf.append(", frc: ");
1840 buf.append(frc.toString());