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)
          Deprecated. This function is deprecated in the latest CUDA version
static int JCudaDriver.cuTexRefCreate(CUtexref pTexRef)
          Deprecated. This function is deprecated in the latest CUDA version
static int JCudaDriver.cuTexRefDestroy(CUtexref hTexRef)
          Deprecated. This function is deprecated in the latest CUDA version
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)
           
static int JCudaDriver.cuTexRefGetMipmapFilterMode(int[] pfm, CUtexref hTexRef)
           
static int JCudaDriver.cuTexRefGetMipmapLevelBias(float[] pbias, CUtexref hTexRef)
           
static int JCudaDriver.cuTexRefGetMipmapLevelClamp(float[] pminMipmapLevelClamp, float[] pmaxMipmapLevelClamp, CUtexref hTexRef)
           
static int JCudaDriver.cuTexRefGetMipmappedArray(CUmipmappedArray phMipmappedArray, CUtexref hTexRef)
           
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)
           
static int JCudaDriver.cuTexRefSetMipmapFilterMode(CUtexref hTexRef, int fm)
           
static int JCudaDriver.cuTexRefSetMipmapLevelBias(CUtexref hTexRef, float bias)
           
static int JCudaDriver.cuTexRefSetMipmapLevelClamp(CUtexref hTexRef, float minMipmapLevelClamp, float maxMipmapLevelClamp)
           
static int JCudaDriver.cuTexRefSetMipmappedArray(CUtexref hTexRef, CUmipmappedArray hMipmappedArray, int Flags)