Searched defs:maxV (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java539 * @param maxV The maximium scale in the vertical direction to use before punting and redrawing from scratch.
540 * For example, if maxV is 2, then we will attempt to scale any cached images up to 2x the canvas
541 * height before redrawing from scratch. Reasonable maxV values may improve painting performance.
545 CacheMode cacheMode, double maxH, double maxV) {
547 throw new IllegalArgumentException("Both maxH and maxV must be >= 1");
555 this.maxVerticalScaleFactor = maxV;
544 PaintContext(Insets insets, Dimension canvasSize, boolean inverted, CacheMode cacheMode, double maxH, double maxV) argument

Completed in 36 milliseconds