Click or drag to resize

Texture Class

A texture
Inheritance Hierarchy

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public sealed class Texture : GLObject

The Texture type exposes the following members.

Constructors
  NameDescription
Public methodTexture
Creates a texture.
Top
Properties
  NameDescription
Public propertyStatic memberActiveTextureUnit
Gets the active texture unit.
Public propertyStatic memberCompressedTextureFormats
Gets a list of symbolic constants indicating which compressed texture formats are available.
Public propertyStatic memberCurrent2DTexture
Get the 2D texture that is currently bound for the active multitexture unit.
Public propertyStatic memberCurrentCubemapTexture
Get the cubemap texture that is currently bound for the active multitexture unit.
Public propertyHandle
Internal OpenGL handle to the object
(Inherited from GLObject.)
Public propertyIsBound
Checks if this texture is currently bound.
Public propertyMagnificationFilter
Gets or sets the magnification filter for this texture.
Public propertyStatic memberMaxCombinedTextureUnits
Gets the maximum supported texture image units that can be used to access texture maps from the vertex shader and the fragment processor combined.
Public propertyStatic memberMaxCubeMapTextureSize
Gets a rough estimate of the largest cube-map texture that the GL can handle.
Public propertyStatic memberMaxTextureSize
Gets a rough estimate of the largest texture that the GL can handle.
Public propertyStatic memberMaxTextureUnits
Gets the maximum supported texture image units that can be used to access texture maps from the fragment shader.
Public propertyStatic memberMaxVertexTextureUnits
Gets the maximum supported texture image units that can be used to access texture maps from the vertex shader.
Public propertyMinificationFilter
Gets or sets the minification filter for this texture.
Public propertyStatic memberMipmapHint
Gets or sets an implementation-specific hint for generating mipmaps.
Public propertyWrapS
Gets or sets the wrap mode for texture coordinate S (horizontal).
Public propertyWrapT
Gets or sets the wrap mode for texture coordinate T (vertical).
Top
Methods
  NameDescription
Public methodBind
Binds the texture.
Public methodBindToTextureUnit
Actives a texture unit and binds this texture to that unit.
Public methodCopy
Copies pixels from the current framebuffer into the texture.
Public methodDispose
Disposes of the OpenGL object
(Inherited from GLObject.)
Public methodEquals
Checks if this object matches another object.
(Inherited from GLObject.)
Public methodGenerateMipmap
Generate a complete set of mipmaps for this texture object.
Public methodGetHashCode
Returns a hash code for this object
(Inherited from GLObject.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodReserve
Reserve memory for a texture of given dimensions.
Public methodSubCopy
Copies pixels from a part of the current framebuffer into the texture.
Public methodSubUploadT(glPixelFormat, Int32, Int32, Int32, Int32, T, Int32, glPixelDataType, Int32)
Uploads a part of an image to the texture.
Public methodSubUploadT(glPixelFormat, Int32, Int32, Int32, Int32, T, Int32, glPixelDataType, Int32)
Uploads a part of an image to the texture.
Public methodSubUploadCompressedT
Uploads a part of a compressed image to the texture.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUnbind
Unbinds the texture.
Public methodUnbindFromTextureUnit
Actives a texture unit and unbinds this texture from that unit.
Public methodUploadT(glPixelFormat, Int32, Int32, T, Int32, glPixelDataType, Int32)
Uploads an image to the texture.
Public methodUploadT(glPixelFormat, Int32, Int32, T, Int32, glPixelDataType, Int32)
Uploads an image to the texture.
Public methodUploadCompressedT
Uploads a compressed image to the texture.
Top
See Also