Searched refs:EffectUtils (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DDropShadowEffect.java103 float[] kernel = EffectUtils.createGaussianKernel(size);
104 EffectUtils.blur(tmpBuf1, tmpBuf2, tmpW, tmpH, kernel, size); // horizontal pass
105 EffectUtils.blur(tmpBuf2, tmpBuf1, tmpH, tmpW, kernel, size);// vertical pass
H A DInnerShadowEffect.java102 float[] kernel = EffectUtils.createGaussianKernel(size * 2);
103 EffectUtils.blur(srcAlphaBuf, tmpBuf2, tmpW, tmpH, kernel, size * 2); // horizontal pass
104 EffectUtils.blur(tmpBuf2, tmpBuf1, tmpH, tmpW, kernel, size * 2);// vertical pass
H A DEffectUtils.java38 * EffectUtils
42 class EffectUtils { class
97 throw new IllegalArgumentException("EffectUtils.gaussianBlur() src image is not a supported type, type=[" +
H A DNimbusLookAndFeel.java362 BufferedImage img = EffectUtils.createCompatibleTranslucentImage(

Completed in 46 milliseconds