2370N/A/*
2685N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
2370N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2370N/A *
2370N/A * This code is free software; you can redistribute it and/or modify it
2370N/A * under the terms of the GNU General Public License version 2 only, as
2685N/A * published by the Free Software Foundation. Oracle designates this
2370N/A * particular file as subject to the "Classpath" exception as provided
2685N/A * by Oracle in the LICENSE file that accompanied this code.
2370N/A *
2370N/A * This code is distributed in the hope that it will be useful, but WITHOUT
2370N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2370N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2370N/A * version 2 for more details (a copy is included in the LICENSE file that
2370N/A * accompanied this code).
2370N/A *
2370N/A * You should have received a copy of the GNU General Public License version
2370N/A * 2 along with this work; if not, write to the Free Software Foundation,
2370N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2370N/A *
2685N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2685N/A * or visit www.oracle.com if you need additional information or have any
2685N/A * questions.
2370N/A */
2370N/A
2370N/Apackage sun.java2d.jules;
2370N/A
2370N/Aimport java.awt.*;
2370N/A
2370N/Aimport java.awt.geom.*;
2370N/Aimport sun.java2d.pipe.*;
2370N/Aimport sun.java2d.pisces.*;
2370N/A
2370N/Apublic class JulesRenderingEngine extends PiscesRenderingEngine {
2370N/A
2370N/A @Override
2370N/A public AATileGenerator
2370N/A getAATileGenerator(Shape s, AffineTransform at, Region clip,
2370N/A BasicStroke bs, boolean thin,
2370N/A boolean normalize, int[] bbox) {
2370N/A
2370N/A if (JulesPathBuf.isCairoAvailable()) {
2370N/A return new JulesAATileGenerator(s, at, clip, bs, thin,
2370N/A normalize, bbox);
2370N/A } else {
2370N/A return super.getAATileGenerator(s, at, clip, bs, thin,
2370N/A normalize, bbox);
2370N/A }
2370N/A }
2370N/A
2370N/A public float getMinimumAAPenSize() {
2370N/A return 0.5f;
2370N/A }
2370N/A}