|
| static TextureData | newTextureData (final GLProfile glp, final BufferedImage image, final boolean mipmap) |
| | Creates a TextureData from the given BufferedImage. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final BufferedImage image, final int internalFormat, final int pixelFormat, final boolean mipmap) throws IllegalArgumentException |
| | Creates a TextureData from the given BufferedImage, using the specified OpenGL internal format and pixel format for the texture which will eventually result. More...
|
| |
| static Texture | newTexture (final GLProfile glp, final BufferedImage image, final boolean mipmap) throws GLException |
| | Creates an OpenGL texture object from the specified BufferedImage using the current OpenGL context. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final File file, final boolean mipmap, String fileSuffix) throws IOException |
| | Creates a TextureData from the given file. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final InputStream stream, final boolean mipmap, final String fileSuffix) throws IOException |
| | Creates a TextureData from the given stream. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final URL url, final boolean mipmap, String fileSuffix) throws IOException |
| | Creates a TextureData from the given URL. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final File file, final int internalFormat, final int pixelFormat, final boolean mipmap, String fileSuffix) throws IOException, IllegalArgumentException |
| | Creates a TextureData from the given file, using the specified OpenGL internal format and pixel format for the texture which will eventually result. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final InputStream stream, final int internalFormat, final int pixelFormat, final boolean mipmap, final String fileSuffix) throws IOException, IllegalArgumentException |
| | Creates a TextureData from the given stream, using the specified OpenGL internal format and pixel format for the texture which will eventually result. More...
|
| |
| static TextureData | newTextureData (final GLProfile glp, final URL url, final int internalFormat, final int pixelFormat, final boolean mipmap, String fileSuffix) throws IOException, IllegalArgumentException |
| | Creates a TextureData from the given URL, using the specified OpenGL internal format and pixel format for the texture which will eventually result. More...
|
| |
| static Texture | newTexture (final TextureData data) throws GLException, IllegalArgumentException |
| | Creates an OpenGL texture object from the specified TextureData using the current OpenGL context. More...
|
| |
| static Texture | newTexture (final GL gl, final TextureData data) throws GLException, IllegalArgumentException |
| | Creates an OpenGL texture object from the specified TextureData using the given OpenGL context. More...
|
| |
| static Texture | newTexture (final File file, final boolean mipmap) throws IOException, GLException |
| | Creates an OpenGL texture object from the specified file using the current OpenGL context. More...
|
| |
| static Texture | newTexture (final InputStream stream, final boolean mipmap, final String fileSuffix) throws IOException, GLException |
| | Creates an OpenGL texture object from the specified stream using the current OpenGL context. More...
|
| |
| static Texture | newTexture (final URL url, final boolean mipmap, String fileSuffix) throws IOException, GLException |
| | Creates an OpenGL texture object from the specified URL using the current OpenGL context. More...
|
| |
| static Texture | newTexture (final int target) |
| | Creates an OpenGL texture object associated with the given OpenGL texture target. More...
|
| |
| static void | write (final Texture texture, final File file) throws IOException, GLException |
| | Writes the given texture to a file. More...
|
| |
| static void | write (final TextureData data, final File file) throws IOException, GLException |
| |
| static void | addTextureProvider (final TextureProvider provider) |
| | Adds a TextureProvider to support reading of a new file format. More...
|
| |
| static void | addTextureWriter (final TextureWriter writer) |
| | Adds a TextureWriter to support writing of a new file format. More...
|
| |
| static void | setTexRectEnabled (final boolean enabled) |
| | Toggles the use of the GL_ARB_texture_rectangle extension by the TextureIO classes. More...
|
| |
| static boolean | isTexRectEnabled () |
| | Indicates whether the GL_ARB_texture_rectangle extension is allowed to be used for non-power-of-two textures; see setTexRectEnabled. More...
|
| |
|
| static final String | DDS = ImageType.T_DDS |
| | Constant which can be used as a file suffix to indicate a DirectDraw Surface file, value {@value}. More...
|
| |
| static final String | SGI = "sgi" |
| | Constant which can be used as a file suffix to indicate an SGI RGB file, value {@value}. More...
|
| |
| static final String | SGI_RGB = ImageType.T_SGI_RGB |
| | Constant which can be used as a file suffix to indicate an SGI RGB file, value {@value}. More...
|
| |
| static final String | GIF = ImageType.T_GIF |
| | Constant which can be used as a file suffix to indicate a GIF file, value {@value}. More...
|
| |
| static final String | JPG = ImageType.T_JPG |
| | Constant which can be used as a file suffix to indicate a JPEG file, value {@value}. More...
|
| |
| static final String | PNG = ImageType.T_PNG |
| | Constant which can be used as a file suffix to indicate a PNG file, value {@value}. More...
|
| |
| static final String | TGA = ImageType.T_TGA |
| | Constant which can be used as a file suffix to indicate a Targa file, value {@value}. More...
|
| |
| static final String | TIFF = ImageType.T_TIFF |
| | Constant which can be used as a file suffix to indicate a TIFF file, value {@value}. More...
|
| |
| static final String | PAM = ImageType.T_PAM |
| | Constant which can be used as a file suffix to indicate a PAM file, NetPbm magic 7 - binary RGB and RGBA. More...
|
| |
| static final String | PPM = ImageType.T_PPM |
| | Constant which can be used as a file suffix to indicate a PAM file, NetPbm magic 6 - binary RGB. More...
|
| |
Definition at line 47 of file AWTTextureIO.java.