All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.awt.image.PackedColorModel Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.awt.image;

import java.awt.color.ColorSpace;

@SuppressWarnings("WeakerAccess")
public abstract class PackedColorModel extends ColorModel {
	public PackedColorModel(ColorSpace space, int bits, int[] colorMaskArray, int alphaMask, boolean isAlphaPremultiplied, int trans, int transferType) {
		super(bits, new int[0], space, alphaMask != 0, isAlphaPremultiplied, trans, transferType);
	}

	public PackedColorModel(ColorSpace space, int bits, int rmask, int gmask, int bmask, int amask, boolean isAlphaPremultiplied, int trans, int transferType) {
		super(bits, new int[0], space, amask != 0, isAlphaPremultiplied, trans, transferType);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy