|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.sun.opengl.util.texture.Texture
public class Texture
Represents an OpenGL texture object. Contains convenience routines for enabling/disabling OpenGL texture state, binding this texture, and computing texture coordinates for both the entire image as well as a sub-image.
Non-power-of-two restrictions
When creating an OpenGL texture object, the Texture class will
attempt to leverage the GL_ARB_texture_non_power_of_two
and GL_ARB_texture_rectangle
extensions (in that order) whenever possible. If neither extension
is available, the Texture class will simply upload a non-pow2-sized
image into a standard pow2-sized texture (without any special
scaling). Since the choice of extension (or whether one is used at
all) depends on the user's machine configuration, developers are
recommended to use getImageTexCoords()
and getSubImageTexCoords(int, int, int, int)
, as those methods will calculate the
appropriate texture coordinates for the situation.
One caveat in this approach is that certain texture wrap modes
(e.g. GL_REPEAT
) are not legal when the GL_ARB_texture_rectangle
extension is in use. Another issue to be aware of is that in the
default pow2 scenario, if the original image does not have pow2
dimensions, then wrapping may not work as one might expect since
the image does not extend to the edges of the pow2 texture. If
texture wrapping is important, it is recommended to use only
pow2-sized images with the Texture class.
Performance Tips
For best performance, try to avoid calling enable()
/
bind()
/ disable()
any more than necessary. For
example, applications using many Texture objects in the same scene
may want to reduce the number of calls to both enable()
and
disable()
. To do this it is necessary to call getTarget()
to make sure the OpenGL texture target is the same for
all of the Texture objects in use; non-power-of-two textures using
the GL_ARB_texture_rectangle extension use a different target than
power-of-two textures using the GL_TEXTURE_2D target. Note that
when switching between textures it is necessary to call bind()
, but when drawing many triangles all using the same texture,
for best performance only one call to bind()
should be made.
Alpha premultiplication and blending
The mathematically correct way to perform blending in OpenGL
(with the SrcOver "source over destination" mode, or any other
Porter-Duff rule) is to use "premultiplied color components", which
means the R/G/ B color components have already been multiplied by
the alpha value. To make things easier for developers, the Texture
class will automatically convert non-premultiplied image data into
premultiplied data when storing it into an OpenGL texture. As a
result, it is important to use the correct blending function; for
example, the SrcOver rule is expressed as:
gl.glBlendFunc(GL.GL_ONE, GL.GL_ONE_MINUS_SRC_ALPHA);Also, when using a texture function like
GL_MODULATE
where
the current color plays a role, it is important to remember to make
sure that the color is specified in a premultiplied form, for
example:
float a = ...; float r = r * a; float g = g * a; float b = b * a; gl.glColor4f(r, g, b, a);For reference, here is a list of the Porter-Duff compositing rules and the associated OpenGL blend functions (source and destination factors) to use in the face of premultiplied alpha:
Rule | Source | Dest |
Clear | GL_ZERO | GL_ZERO |
Src | GL_ONE | GL_ZERO |
SrcOver | GL_ONE | GL_ONE_MINUS_SRC_ALPHA |
DstOver | GL_ONE_MINUS_DST_ALPHA | GL_ONE |
SrcIn | GL_DST_ALPHA | GL_ZERO |
DstIn | GL_ZERO | GL_SRC_ALPHA |
SrcOut | GL_ONE_MINUS_DST_ALPHA | GL_ZERO |
DstOut | GL_ZERO | GL_ONE_MINUS_SRC_ALPHA |
Dst | GL_ZERO | GL_ONE |
SrcAtop | GL_DST_ALPHA | GL_ONE_MINUS_SRC_ALPHA |
DstAtop | GL_ONE_MINUS_DST_ALPHA | GL_SRC_ALPHA |
AlphaXor | GL_ONE_MINUS_DST_ALPHA | GL_ONE_MINUS_SRC_ALPHA |
Constructor Summary | |
---|---|
Texture(int target)
|
|
Texture(TextureData data)
|
Method Summary | |
---|---|
void |
bind()
Binds this texture to the current GL context. |
void |
destroy(GL gl)
Destroys the native resources used by this texture object. |
void |
disable()
Disables this texture's target (e.g., GL_TEXTURE_2D) in the current GL context's state. |
void |
dispose()
Deprecated. use destroy(GL) |
void |
dispose(GL gl)
Deprecated. use destroy(GL) |
void |
enable()
Enables this texture's target (e.g., GL_TEXTURE_2D) in the current GL context's state. |
float |
getAspectRatio()
Returns the original aspect ratio of the image, defined as (image width) / (image height), before any scaling that might have occurred as a result of using the GLU mipmap routines. |
int |
getEstimatedMemorySize()
Returns an estimate of the amount of texture memory in bytes this Texture consumes. |
int |
getHeight()
Returns the height of the allocated OpenGL texture in pixels. |
int |
getImageHeight()
Returns the height of the image contained within this texture. |
TextureCoords |
getImageTexCoords()
Returns the set of texture coordinates corresponding to the entire image. |
int |
getImageWidth()
Returns the width of the image contained within this texture. |
boolean |
getMustFlipVertically()
Indicates whether this texture's texture coordinates must be flipped vertically in order to properly display the texture. |
TextureCoords |
getSubImageTexCoords(int x1,
int y1,
int x2,
int y2)
Returns the set of texture coordinates corresponding to the specified sub-image. |
int |
getTarget()
Returns the OpenGL "target" of this texture. |
int |
getTextureObject()
Returns the underlying OpenGL texture object for this texture. |
int |
getWidth()
Returns the width of the allocated OpenGL texture in pixels. |
boolean |
isUsingAutoMipmapGeneration()
Indicates whether this Texture is using automatic mipmap generation (via the OpenGL texture parameter GL_GENERATE_MIPMAP). |
void |
setTexParameterf(int parameterName,
float value)
Sets the OpenGL floating-point texture parameter for the texture's target. |
void |
setTexParameterfv(int parameterName,
float[] params,
int params_offset)
Sets the OpenGL multi-floating-point texture parameter for the texture's target. |
void |
setTexParameterfv(int parameterName,
FloatBuffer params)
Sets the OpenGL multi-floating-point texture parameter for the texture's target. |
void |
setTexParameteri(int parameterName,
int value)
Sets the OpenGL integer texture parameter for the texture's target. |
void |
setTexParameteriv(int parameterName,
int[] params,
int params_offset)
Sets the OpenGL multi-integer texture parameter for the texture's target. |
void |
setTexParameteriv(int parameterName,
IntBuffer params)
Sets the OpenGL multi-integer texture parameter for the texture's target. |
void |
updateImage(TextureData data)
Updates the entire content area of this texture using the data in the given image. |
void |
updateImage(TextureData data,
int target)
Updates the content area of the specified target of this texture using the data in the given image. |
void |
updateSubImage(TextureData data,
int mipmapLevel,
int x,
int y)
Updates a subregion of the content area of this texture using the given data. |
void |
updateSubImage(TextureData data,
int mipmapLevel,
int dstx,
int dsty,
int srcx,
int srcy,
int width,
int height)
Updates a subregion of the content area of this texture using the specified sub-region of the given data. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Texture(TextureData data) throws GLException
GLException
public Texture(int target) throws GLException
GLException
Method Detail |
---|
public void enable() throws GLException
gl.glEnable(texture.getTarget());See the performance tips above for hints on how to maximize performance when using many Texture objects.
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void disable() throws GLException
gl.glDisable(texture.getTarget());See the performance tips above for hints on how to maximize performance when using many Texture objects.
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void bind() throws GLException
gl.glBindTexture(texture.getTarget(), texture.getTextureObject());See the performance tips above for hints on how to maximize performance when using many Texture objects.
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void dispose() throws GLException
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void dispose(GL gl) throws GLException
GLException
- if any OpenGL-related errors occurredpublic void destroy(GL gl) throws GLException
GLException
- if any OpenGL-related errors occurredpublic int getTarget()
GL.GL_TEXTURE_2D
,
GL2GL3.GL_TEXTURE_RECTANGLE_ARB
public int getWidth()
public int getHeight()
public int getImageWidth()
getWidth()
. It is
recommended that applications call getImageTexCoords()
and
getSubImageTexCoords(int, int, int, int)
rather than using this API
directly.
public int getImageHeight()
getHeight()
. It is
recommended that applications call getImageTexCoords()
and
getSubImageTexCoords(int, int, int, int)
rather than using this API
directly.
public float getAspectRatio()
public TextureCoords getImageTexCoords()
public TextureCoords getSubImageTexCoords(int x1, int y1, int x2, int y2)
public void updateImage(TextureData data) throws GLException
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic boolean getMustFlipVertically()
getImageTexCoords
and getSubImageTexCoords
, but applications may generate or otherwise
produce texture coordinates which must be corrected.
public void updateImage(TextureData data, int target) throws GLException
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void updateSubImage(TextureData data, int mipmapLevel, int x, int y) throws GLException
isUsingAutoMipmapGeneration
),
updates to the base (level 0) mipmap will cause the lower-level
mipmaps to be regenerated, and updates to other mipmap levels
will be ignored. Otherwise, if automatic mipmap generation is not
in use, only updates the specified mipmap level and does not
re-generate mipmaps if they were originally produced or loaded.
data
- the image data to be uploaded to this texturemipmapLevel
- the mipmap level of the texture to set. If
this is non-zero and the TextureData contains mipmap data, the
appropriate mipmap level will be selected.x
- the x offset (in pixels) relative to the lower-left corner
of this texturey
- the y offset (in pixels) relative to the lower-left corner
of this texture
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void updateSubImage(TextureData data, int mipmapLevel, int dstx, int dsty, int srcx, int srcy, int width, int height) throws GLException
isUsingAutoMipmapGeneration
), updates to the base (level 0)
mipmap will cause the lower-level mipmaps to be regenerated, and
updates to other mipmap levels will be ignored. Otherwise, if
automatic mipmap generation is not in use, only updates the
specified mipmap level and does not re-generate mipmaps if they
were originally produced or loaded. This method is only supported
for uncompressed TextureData sources.
data
- the image data to be uploaded to this texturemipmapLevel
- the mipmap level of the texture to set. If
this is non-zero and the TextureData contains mipmap data, the
appropriate mipmap level will be selected.dstx
- the x offset (in pixels) relative to the lower-left corner
of this texture where the update will be applieddsty
- the y offset (in pixels) relative to the lower-left corner
of this texture where the update will be appliedsrcx
- the x offset (in pixels) relative to the lower-left corner
of the supplied TextureData from which to fetch the update rectanglesrcy
- the y offset (in pixels) relative to the lower-left corner
of the supplied TextureData from which to fetch the update rectanglewidth
- the width (in pixels) of the rectangle to be updatedheight
- the height (in pixels) of the rectangle to be updated
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void setTexParameterf(int parameterName, float value)
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void setTexParameterfv(int parameterName, FloatBuffer params)
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void setTexParameterfv(int parameterName, float[] params, int params_offset)
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void setTexParameteri(int parameterName, int value)
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void setTexParameteriv(int parameterName, IntBuffer params)
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic void setTexParameteriv(int parameterName, int[] params, int params_offset)
GLException
- if no OpenGL context was current or if any
OpenGL-related errors occurredpublic int getTextureObject()
public int getEstimatedMemorySize()
public boolean isUsingAutoMipmapGeneration()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |