Home
last modified time | relevance | path

Searched refs:sShadowBottomRight (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSwtUtils.java417 sShadowBottomRight = icons.getIcon("shadow-br"); //$NON-NLS-1$
420 assert sShadowBottomRight.getImageData().width == SHADOW_SIZE;
421 assert sShadowBottomRight.getImageData().height == SHADOW_SIZE;
438 gc.drawImage(sShadowBottomRight, x + width, y + height);
454 private static Image sShadowBottomRight;
DImageUtils.java574 sShadowBottomRight = readImage("shadow-br.png"); //$NON-NLS-1$ in drawRectangleShadow()
578 assert sShadowBottomRight.getWidth() == SHADOW_SIZE; in drawRectangleShadow()
579 assert sShadowBottomRight.getHeight() == SHADOW_SIZE; in drawRectangleShadow()
592 gc.drawImage(sShadowBottomRight, x + width, y + height, null); in drawRectangleShadow()
703 private static BufferedImage sShadowBottomRight; field in ImageUtils