Searched refs:imgW (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPainter.java156 final int imgW = bounds.width * scale;
158 BufferedImage img = (BufferedImage) cache.getImage(config, imgW, imgH, scale, controlState);
160 img = new BufferedImage(imgW, imgH, BufferedImage.TYPE_INT_ARGB_PRE);
161 cache.setImage(img, config, imgW, imgH, scale, controlState);
167 imgW, imgH, 0, 0, bounds.width, bounds.height);
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIControl.java48 private static native int paintImage (int[] data, int imgW, int imgH, long cfDictionaryPtr, long oldProperties, long newProperties, double x, double y, double w, double h); argument
49 private static native int paintChangesImage (int[] data, int imgW, int imgH, long cfDictionaryPtr, long oldProperties, long newProperties, double x, double y, double w, double h, long byteBufferPtr); argument
207 public void paint(final int[] data, final int imgW, final int imgH, final double x, final double y, final double w, final double h) { argument
208 paintImage(data, imgW, imgH, x, y, w, h);
212 private synchronized int paintImage(final int[] data, final int imgW, final int imgH, final double x, final double y, final double w, final double h) { argument
215 return paintImage(data, imgW, imgH, cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h);
224 return paintChangesImage(data, imgW, imgH, cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h, localByteBuffer.ptr);
239 return paintChangesImage(data, imgW, imgH, cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h, localByteBuffer.ptr);
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DJRSUIController.m193 (JNIEnv *env, jlong controlPtr, jlong oldProperties, jlong newProperties, jintArray data, jint imgW, jint imgH, jdouble x, jdouble y, jdouble w, jdouble h)
200 CGContextRef cgRef = CGBitmapContextCreate(rawPixelData, imgW, imgH, 8, imgW * 4, colorspace, kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host);
202 CGContextScaleCTM(cgRef, imgW/w , imgH/h);
218 (JNIEnv *env, jclass clazz, jintArray data, jint imgW, jint imgH, jlong controlPtr, jlong oldProperties, jlong newProperties, jdouble x, jdouble y, jdouble w, jdouble h)
220 return doPaintImage(env, controlPtr, oldProperties, newProperties, data, imgW, imgH, x, y, w, h);
229 (JNIEnv *env, jclass clazz, jintArray data, jint imgW, jint imgH, jlong controlPtr, jlong oldProperties, jlong newProperties, jdouble x, jdouble y, jdouble w, jdouble h, jlong changes)
234 return doPaintImage(env, controlPtr, oldProperties, newProperties, data, imgW, imgH, x, y, w, h);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImage.java739 final int imgW = img.getWidth(null) * scale;
744 if (srcW > imgW) {
745 srcW = imgW;
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java3107 final int imgW = img.getWidth(null);
3110 return drawHiDPIImage(img, x, y, x + width, y + height, 0, 0, imgW,
3114 if (width == imgW && height == imgH) {
3156 final int imgW = img.getWidth(null);
3158 return drawHiDPIImage(img, x, y, x + imgW, y + imgH, 0, 0, imgW,

Completed in 46 milliseconds