Home | History | Annotate | Download | only in textures

Lines Matching defs:ImageType

67 		Image result = this.loadImage(inputStream, ImageType.AWT, flipY);
71 result = this.loadImage(inputStream, ImageType.TGA, flipY);
76 result = this.loadImage(inputStream, ImageType.DDS, flipY);
91 * @param imageType
92 * the type of the image {@link ImageType}
97 public Image loadImage(InputStream inputStream, ImageType imageType, boolean flipY) {
99 switch (imageType) {
122 throw new IllegalStateException("Unknown image type: " + imageType);
132 private static enum ImageType {