src/share/classes/sun/awt/SunToolkit.java

Print this page

        

*** 848,873 **** return ir.prepare(o) & prepareResolutionVariant(img, w, h, o); } private int checkResolutionVariant(Image img, int w, int h, ImageObserver o) { ToolkitImage rvImage = getResolutionVariant(img); // Ignore the resolution variant in case of error return (rvImage == null || rvImage.hasError()) ? 0xFFFF : ! checkImage(rvImage, 2 * w, 2 * h, MultiResolutionToolkitImage. getResolutionVariantObserver( ! img, o, w, h, 2 * w, 2 * h)); } private boolean prepareResolutionVariant(Image img, int w, int h, ImageObserver o) { ToolkitImage rvImage = getResolutionVariant(img); // Ignore the resolution variant in case of error return rvImage == null || rvImage.hasError() || prepareImage( ! rvImage, 2 * w, 2 * h, MultiResolutionToolkitImage.getResolutionVariantObserver( ! img, o, w, h, 2 * w, 2 * h)); } private static ToolkitImage getResolutionVariant(Image image) { if (image instanceof MultiResolutionToolkitImage) { Image resolutionVariant = ((MultiResolutionToolkitImage) image). --- 848,881 ---- return ir.prepare(o) & prepareResolutionVariant(img, w, h, o); } private int checkResolutionVariant(Image img, int w, int h, ImageObserver o) { ToolkitImage rvImage = getResolutionVariant(img); + int rvw = getRVSize(w); + int rvh = getRVSize(h); // Ignore the resolution variant in case of error return (rvImage == null || rvImage.hasError()) ? 0xFFFF : ! checkImage(rvImage, rvw, rvh, MultiResolutionToolkitImage. getResolutionVariantObserver( ! img, o, w, h, rvw, rvh, true)); } private boolean prepareResolutionVariant(Image img, int w, int h, ImageObserver o) { ToolkitImage rvImage = getResolutionVariant(img); + int rvw = getRVSize(w); + int rvh = getRVSize(h); // Ignore the resolution variant in case of error return rvImage == null || rvImage.hasError() || prepareImage( ! rvImage, rvw, rvh, MultiResolutionToolkitImage.getResolutionVariantObserver( ! img, o, w, h, rvw, rvh, true)); ! } ! ! private static int getRVSize(int size){ ! return size == -1 ? -1 : size; } private static ToolkitImage getResolutionVariant(Image image) { if (image instanceof MultiResolutionToolkitImage) { Image resolutionVariant = ((MultiResolutionToolkitImage) image).