Uses of Class
jcuda.driver.CUtexref

Packages that use CUtexref
jcuda.driver Contains the classes related to the JCuda driver API. 
 

Uses of CUtexref in jcuda.driver
 

Methods in jcuda.driver with parameters of type CUtexref
static int JCudaDriver.cuModuleGetTexRef(CUtexref pTexRef, CUmodule hmod, java.lang.String name)
          Returns a handle to a texture reference.
static int JCudaDriver.cuParamSetTexRef(CUfunction hfunc, int texunit, CUtexref hTexRef)
          Adds a texture-reference to the function's argument list.
static int JCudaDriver.cuTexRefCreate(CUtexref pTexRef)
          Creates a texture reference.
static int JCudaDriver.cuTexRefDestroy(CUtexref hTexRef)
          Destroys a texture reference.
static int JCudaDriver.cuTexRefGetAddress(CUdeviceptr pdptr, CUtexref hTexRef)
          Gets the address associated with a texture reference.
static int JCudaDriver.cuTexRefGetAddressMode(int[] pam, CUtexref hTexRef, int dim)
          Gets the addressing mode used by a texture reference.
static int JCudaDriver.cuTexRefGetArray(CUarray phArray, CUtexref hTexRef)
          Gets the array bound to a texture reference.
static int JCudaDriver.cuTexRefGetFilterMode(int[] pfm, CUtexref hTexRef)
          Gets the filter-mode used by a texture reference.
static int JCudaDriver.cuTexRefGetFlags(int[] pFlags, CUtexref hTexRef)
          Gets the flags used by a texture reference.
static int JCudaDriver.cuTexRefGetFormat(int[] pFormat, int[] pNumChannels, CUtexref hTexRef)
          Gets the format used by a texture reference.
static int JCudaDriver.cuTexRefGetMaxAnisotropy(int[] pmaxAniso, CUtexref hTexRef)
          Gets the maximum anistropy for a texture reference.
static int JCudaDriver.cuTexRefGetMipmapFilterMode(int[] pfm, CUtexref hTexRef)
          Gets the mipmap filtering mode for a texture reference.
static int JCudaDriver.cuTexRefGetMipmapLevelBias(float[] pbias, CUtexref hTexRef)
          Gets the mipmap level bias for a texture reference.
static int JCudaDriver.cuTexRefGetMipmapLevelClamp(float[] pminMipmapLevelClamp, float[] pmaxMipmapLevelClamp, CUtexref hTexRef)
          Gets the min/max mipmap level clamps for a texture reference.
static int JCudaDriver.cuTexRefGetMipmappedArray(CUmipmappedArray phMipmappedArray, CUtexref hTexRef)
          Gets the mipmapped array bound to a texture reference.
static int JCudaDriver.cuTexRefSetAddress(long[] ByteOffset, CUtexref hTexRef, CUdeviceptr dptr, long bytes)
          Binds an address as a texture reference.
static int JCudaDriver.cuTexRefSetAddress2D(CUtexref hTexRef, CUDA_ARRAY_DESCRIPTOR desc, CUdeviceptr dptr, long PitchInBytes)
          Binds an address as a 2D texture reference.
static int JCudaDriver.cuTexRefSetAddressMode(CUtexref hTexRef, int dim, int am)
          Sets the addressing mode for a texture reference.
static int JCudaDriver.cuTexRefSetArray(CUtexref hTexRef, CUarray hArray, int Flags)
          Binds an array as a texture reference.
static int JCudaDriver.cuTexRefSetFilterMode(CUtexref hTexRef, int fm)
          Sets the filtering mode for a texture reference.
static int JCudaDriver.cuTexRefSetFlags(CUtexref hTexRef, int Flags)
          Sets the flags for a texture reference.
static int JCudaDriver.cuTexRefSetFormat(CUtexref hTexRef, int fmt, int NumPackedComponents)
          Sets the format for a texture reference.
static int JCudaDriver.cuTexRefSetMaxAnisotropy(CUtexref hTexRef, int maxAniso)
          Sets the maximum anistropy for a texture reference.
static int JCudaDriver.cuTexRefSetMipmapFilterMode(CUtexref hTexRef, int fm)
          Sets the mipmap filtering mode for a texture reference.
static int JCudaDriver.cuTexRefSetMipmapLevelBias(CUtexref hTexRef, float bias)
          Sets the mipmap level bias for a texture reference.
static int JCudaDriver.cuTexRefSetMipmapLevelClamp(CUtexref hTexRef, float minMipmapLevelClamp, float maxMipmapLevelClamp)
          Sets the mipmap min/max mipmap level clamps for a texture reference.
static int JCudaDriver.cuTexRefSetMipmappedArray(CUtexref hTexRef, CUmipmappedArray hMipmappedArray, int Flags)
          Binds a mipmapped array to a texture reference.