Searched defs:hints (Results 1 - 25 of 50) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/
H A DComposite.java77 * @param hints the hint that the context object uses to choose between
84 RenderingHints hints);
82 createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints) argument
H A DPaint.java88 * @param hints the set of hints that the context object can use to
92 * for a {@code null} {@code hints}.
106 RenderingHints hints);
102 createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) argument
H A DTexturePaint.java112 * @param hints the set of hints that the context object can use to
128 RenderingHints hints) {
137 return TexturePaintContext.getContext(bufImg, xform, hints,
124 createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) argument
H A DGradientPaint.java244 * @param hints the set of hints that the context object can use to
260 RenderingHints hints) {
256 createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) argument
H A DLinearGradientPaint.java321 * @param hints the set of hints that the context object can use to
337 RenderingHints hints)
358 transform, hints,
333 createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform transform, RenderingHints hints) argument
H A DLinearGradientPaintContext.java67 * @param hints the hints that the context object uses to choose
82 RenderingHints hints,
90 super(paint, cm, deviceBounds, userBounds, t, hints, fractions,
77 LinearGradientPaintContext(LinearGradientPaint paint, ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform t, RenderingHints hints, Point2D start, Point2D end, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace) argument
H A DRadialGradientPaint.java580 * @param hints the set of hints that the context object can use to
596 RenderingHints hints)
605 transform, hints,
592 createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform transform, RenderingHints hints) argument
H A DImage.java156 * @param hints flags to indicate the type of algorithm to use
168 public Image getScaledInstance(int width, int height, int hints) { argument
170 if ((hints & (SCALE_SMOOTH | SCALE_AREA_AVERAGING)) != 0) {
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DRenderedImageFactory.java45 * set of parameters, properties, and rendering hints.
73 * @param hints a RenderingHints object containing hints.
77 RenderingHints hints);
76 create(ParameterBlock paramBlock, RenderingHints hints) argument
H A DRenderContext.java46 * resolution at which the rendering is to be performed, and hints
63 /** Table of hints. May be null. */
64 RenderingHints hints; field in class:RenderContext
74 // is assumed. If hints is missing no hints are assumed.
79 * and the rendering hints are supplied as a RenderingHints object.
83 * @param hints a RenderingHints object containing rendering hints.
87 RenderingHints hints) {
88 this.hints
85 RenderContext(AffineTransform usr2dev, Shape aoi, RenderingHints hints) argument
111 RenderContext(AffineTransform usr2dev, RenderingHints hints) argument
143 setRenderingHints(RenderingHints hints) argument
[all...]
H A DRenderableImage.java69 * specifying which hints were observed in creating the rendering.
147 * of the full image. All the rendering hints come from hints
165 * @param hints a RenderingHints object containg hints.
168 RenderedImage createScaledRendering(int w, int h, RenderingHints hints); argument
174 * of interest of the full image. The rendering hints are
H A DRenderableImageOp.java221 * of the full image. All the rendering hints come from hints
239 * @param hints a RenderingHints object containg hints.
243 RenderingHints hints) {
251 RenderContext newRC = new RenderContext(usr2dev, hints);
259 * of interest of the full image. All the rendering hints come
260 * from hints passed in. Implementors of this interface must be
242 createScaledRendering(int w, int h, RenderingHints hints) argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DXORComposite.java69 RenderingHints hints) {
67 createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints) argument
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandCombineOp.java64 RenderingHints hints; field in class:BandCombineOp
77 * defined rendering hints; the <CODE>RenderingHints</CODE> argument can be
81 * @param hints The <CODE>RenderingHints</CODE> object for this operation.
84 public BandCombineOp (float[][] matrix, RenderingHints hints) { argument
99 this.hints = hints;
281 * Returns the rendering hints for this operation.
284 * operation. Returns null if no hints have been set.
287 return hints;
H A DAffineTransformOp.java67 RenderingHints hints; field in class:AffineTransformOp
92 * hints are specified (<CODE>hints</CODE> is null),
99 * @param hints The <CODE>RenderingHints</CODE> object used to specify
106 public AffineTransformOp(AffineTransform xform, RenderingHints hints){ argument
109 this.hints = hints;
111 if (hints != null) {
112 Object value = hints.get(hints
[all...]
H A DConvolveOp.java71 RenderingHints hints; field in class:ConvolveOp
94 * @param hints the specified <code>RenderingHints</code> object
100 public ConvolveOp(Kernel kernel, int edgeCondition, RenderingHints hints) { argument
103 this.hints = hints;
201 ColorConvertOp ccop = new ColorConvertOp(hints);
342 * Returns the rendering hints for this op.
345 return hints;
H A DLookupOp.java80 RenderingHints hints; field in class:LookupOp
87 * @param hints the specified <code>RenderingHints</code>,
90 public LookupOp(LookupTable lookup, RenderingHints hints) { argument
92 this.hints = hints;
226 ColorConvertOp ccop = new ColorConvertOp(hints);
467 * Returns the rendering hints for this op.
472 return hints;
H A DAreaAveragingScaleFilter.java81 * Detect if the data is being delivered with the necessary hints
92 public void setHints(int hints) { argument
93 passthrough = ((hints & neededHints) != neededHints);
94 super.setHints(hints);
233 * pixels that are complete. If the correct hints were not
236 * the delivery hints.
259 * pixels that are complete. If the correct hints were not
262 * the delivery hints.
H A DImageFilter.java143 public void setHints(int hints) { argument
144 consumer.setHints(hints);
H A DRescaleOp.java87 RenderingHints hints; field in class:RescaleOp
100 * @param hints the specified <code>RenderingHints</code>, or
104 RenderingHints hints) {
114 this.hints = hints;
125 * @param hints the specified <code>RenderingHints</code>, or
128 public RescaleOp (float scaleFactor, float offset, RenderingHints hints) { argument
134 this.hints = hints;
438 ColorConvertOp ccop = new ColorConvertOp(hints);
103 RescaleOp(float[] scaleFactors, float[] offsets, RenderingHints hints) argument
[all...]
H A DColorConvertOp.java76 RenderingHints hints; field in class:ColorConvertOp
95 * @param hints the <code>RenderingHints</code> object used to control
98 public ColorConvertOp (RenderingHints hints) argument
101 this.hints = hints;
116 * @param hints the <code>RenderingHints</code> object used to control
120 public ColorConvertOp (ColorSpace cspace, RenderingHints hints) argument
134 this.hints = hints;
151 * @param hints th
155 ColorConvertOp(ColorSpace srcCspace, ColorSpace dstCspace, RenderingHints hints) argument
206 ColorConvertOp(ICC_Profile[] profiles, RenderingHints hints) argument
[all...]
/openjdk7/jdk/test/java/awt/Paint/
H A DPgramUserBoundsTest.java117 RenderingHints hints)
123 return c.createContext(cm, deviceBounds, userBounds, xform, hints);
113 createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageDecoder.java106 protected int setHints(int hints) { argument
110 cq.consumer.setHints(hints);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dimg_util_md.h43 int hints; /* The delivery hints from the producer */ member in struct:__anon1009
49 } curlines; /* For hints=COMPLETESCANLINES */
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DCustomCompositeTest.java226 public CompositeContext createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints) { argument

Completed in 49 milliseconds

12