jcuda.runtime
Class cudaTextureDesc

java.lang.Object
  extended by jcuda.runtime.cudaTextureDesc

public class cudaTextureDesc
extends java.lang.Object

CUDA texture descriptor


Field Summary
 int[] addressMode
          Texture address mode for up to 3 dimensions
 int filterMode
          Texture filter mode
 int maxAnisotropy
          Limit to the anisotropy ratio
 float maxMipmapLevelClamp
          Upper end of the mipmap level range to clamp access to
 float minMipmapLevelClamp
          Lower end of the mipmap level range to clamp access to
 int mipmapFilterMode
          Mipmap filter mode
 float mipmapLevelBias
          Offset applied to the supplied mipmap level
 int normalizedCoords
          Indicates whether texture reads are normalized or not
 int readMode
          Texture read mode
 int sRGB
          Perform sRGB->linear conversion during texture read
 
Constructor Summary
cudaTextureDesc()
          Creates a new, uninitialized cudaTextureDesc
 
Method Summary
 java.lang.String toFormattedString()
          Creates and returns a formatted (aligned, multi-line) String representation of this object
 java.lang.String toString()
          Returns a String representation of this object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

addressMode

public int[] addressMode
Texture address mode for up to 3 dimensions

See Also:
cudaTextureAddressMode

filterMode

public int filterMode
Texture filter mode

See Also:
cudaTextureFilterMode

readMode

public int readMode
Texture read mode

See Also:
cudaTextureReadMode

sRGB

public int sRGB
Perform sRGB->linear conversion during texture read


normalizedCoords

public int normalizedCoords
Indicates whether texture reads are normalized or not


maxAnisotropy

public int maxAnisotropy
Limit to the anisotropy ratio


mipmapFilterMode

public int mipmapFilterMode
Mipmap filter mode

See Also:
cudaTextureFilterMode

mipmapLevelBias

public float mipmapLevelBias
Offset applied to the supplied mipmap level


minMipmapLevelClamp

public float minMipmapLevelClamp
Lower end of the mipmap level range to clamp access to


maxMipmapLevelClamp

public float maxMipmapLevelClamp
Upper end of the mipmap level range to clamp access to

Constructor Detail

cudaTextureDesc

public cudaTextureDesc()
Creates a new, uninitialized cudaTextureDesc

Method Detail

toString

public java.lang.String toString()
Returns a String representation of this object.

Overrides:
toString in class java.lang.Object
Returns:
A String representation of this object.

toFormattedString

public java.lang.String toFormattedString()
Creates and returns a formatted (aligned, multi-line) String representation of this object

Returns:
A formatted String representation of this object