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)
          Gets 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.cuTexRefSetAddress(int[] ByteOffset, CUtexref hTexRef, CUdeviceptr dptr, int bytes)
          Binds an address as a texture-reference.
static int JCudaDriver.cuTexRefSetAddress2D(CUtexref hTexRef, CUDA_ARRAY_DESCRIPTOR desc, CUdeviceptr dptr, int PitchInBytes)
          Binds a linear address range to the texture reference hTexRef.
static int JCudaDriver.cuTexRefSetAddressMode(CUtexref hTexRef, int dim, int am)
          Set the addressing mode for a texture-reference.
static int JCudaDriver.cuTexRefSetArray(CUtexref hTexRef, CUarray hArray, int Flags)
          Binds an array to a texture-reference.
static int JCudaDriver.cuTexRefSetFilterMode(CUtexref hTexRef, int fm)
          Sets the mode for a texture-reference.
static int JCudaDriver.cuTexRefSetFlags(CUtexref hTexRef, int Flags)
          Sets flags for a texture-reference.
static int JCudaDriver.cuTexRefSetFormat(CUtexref hTexRef, int fmt, int NumPackedComponents)
          Sets the format for a texture-reference.