Home
last modified time | relevance | path

Searched refs:imageType (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DImageUtils.java159 public static BufferedImage cropBlank(BufferedImage image, Rect initialCrop, int imageType) { in cropBlank() argument
169 return crop(image, filter, initialCrop, imageType); in cropBlank()
208 final int blankArgb, Rect initialCrop, int imageType) { in cropColor() argument
215 return crop(image, filter, initialCrop, imageType); in cropColor()
235 int imageType) { in crop() argument
323 if (imageType == -1) { in crop()
324 imageType = image.getType(); in crop()
326 if (imageType == BufferedImage.TYPE_CUSTOM) { in crop()
327 imageType = BufferedImage.TYPE_INT_ARGB; in crop()
329 BufferedImage cropped = new BufferedImage(width, height, imageType); in crop()
[all …]
DSwtUtils.java58 public static PaletteData getAwtPaletteData(int imageType) { in getAwtPaletteData() argument
59 switch (imageType) { in getAwtPaletteData()
83 private static boolean isSupportedPaletteType(int imageType) { in isSupportedPaletteType() argument
84 switch (imageType) { in isSupportedPaletteType()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
DGLState.java292 IGLProperty imageType = new GLEnumProperty(GLStateType.TEXTURE_IMAGE_TYPE, in createTextureState() local
298 width, height, format, imageType, image); in createTextureState()