| Package | Description |
|---|---|
| org.bytedeco.cuda.cudart | |
| org.bytedeco.cuda.global |
| Modifier and Type | Method and Description |
|---|---|
textureReference |
textureReference.__cudaReserved(int i,
int setter) |
textureReference |
textureReference.addressMode(int i,
int setter) |
textureReference |
textureReference.channelDesc(cudaChannelFormatDesc setter) |
textureReference |
textureReference.filterMode(int setter) |
textureReference |
textureReference.maxAnisotropy(int setter) |
textureReference |
textureReference.maxMipmapLevelClamp(float setter) |
textureReference |
textureReference.minMipmapLevelClamp(float setter) |
textureReference |
textureReference.mipmapFilterMode(int setter) |
textureReference |
textureReference.mipmapLevelBias(float setter) |
textureReference |
textureReference.normalized(int setter) |
textureReference |
textureReference.position(long position) |
textureReference |
textureReference.sRGB(int setter) |
| Modifier and Type | Method and Description |
|---|---|
static int |
cudart.cudaBindTexture(SizeTPointer offset,
textureReference texref,
Pointer devPtr,
cudaChannelFormatDesc desc) |
static int |
cudart.cudaBindTexture(SizeTPointer offset,
textureReference texref,
Pointer devPtr,
cudaChannelFormatDesc desc,
long size)
\brief Binds a memory area to a texture
Binds \p size bytes of the memory area pointed to by \p devPtr to the
texture reference \p texref.
|
static int |
cudart.cudaBindTexture2D(SizeTPointer offset,
textureReference texref,
Pointer devPtr,
cudaChannelFormatDesc desc,
long width,
long height,
long pitch)
\brief Binds a 2D memory area to a texture
Binds the 2D memory area pointed to by \p devPtr to the
texture reference \p texref.
|
static int |
cudart.cudaBindTextureToArray(textureReference texref,
cudaArray array,
cudaChannelFormatDesc desc)
\brief Binds an array to a texture
Binds the CUDA array \p array to the texture reference \p texref.
|
static int |
cudart.cudaBindTextureToMipmappedArray(textureReference texref,
cudaMipmappedArray mipmappedArray,
cudaChannelFormatDesc desc)
\brief Binds a mipmapped array to a texture
Binds the CUDA mipmapped array \p mipmappedArray to the texture reference \p texref.
|
static int |
cudart.cudaGetTextureAlignmentOffset(SizeTPointer offset,
textureReference texref)
\brief Get the alignment offset of a texture
Returns in \p *offset the offset that was returned when texture reference
\p texref was bound.
|
static int |
cudart.cudaGetTextureReference(textureReference texref,
Pointer symbol) |
static int |
cudart.cudaUnbindTexture(textureReference texref)
\brief Unbinds a texture
Unbinds the texture bound to \p texref.
|
Copyright © 2019. All rights reserved.