public class textureReference extends NativePointerObject
| Modifier and Type | Field and Description |
|---|---|
int[] |
addressMode
Specifies the addressing mode, that is how out-of-range texture
coordinates are handled. addressMode is an array of size three whose first,
second, and third elements specify the addressing mode for the first, second, and
third texture coordinates, respectively; the addressing mode is equal to either
cudaAddressModeClamp, in which case out-of-range texture coordinates are
clamped to the valid range, or cudaAddressModeWrap, in which case out-of range
texture coordinates are wrapped to the valid range;
cudaAddressModeWrap is only supported for normalized texture coordinates;
|
cudaChannelFormatDesc |
channelDesc
Describes the format of the value that is returned when fetching
the texture.
|
int |
disableTrilinearOptimization
Disable any trilinear filtering optimizations.
|
int |
filterMode
Specifies the filtering mode, that is how the value returned when
fetching the texture is computed based on the input texture coordinates.
|
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 |
normalized
Specifies whether texture coordinates are normalized or not.
|
int |
sRGB
Perform sRGB->linear conversion during texture read
|
| Constructor and Description |
|---|
textureReference()
Creates a new, uninitialized textureReference
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns a String representation of this object.
|
equals, getNativePointer, hashCodepublic int normalized
public int filterMode
cudaTextureFilterModepublic int[] addressMode
cudaTextureAddressModepublic cudaChannelFormatDesc channelDesc
cudaChannelFormatDescpublic int sRGB
public int maxAnisotropy
public int mipmapFilterMode
cudaTextureFilterModepublic float mipmapLevelBias
public float minMipmapLevelClamp
public float maxMipmapLevelClamp
public int disableTrilinearOptimization
public textureReference()
public String toString()
toString in class NativePointerObjectCopyright © 2020. All rights reserved.