Package org.bytedeco.cuda.cudart
Class cudaExternalMemoryMipmappedArrayDesc
- java.lang.Object
-
- org.bytedeco.javacpp.Pointer
-
- org.bytedeco.cuda.cudart.cudaExternalMemoryMipmappedArrayDesc
-
- All Implemented Interfaces:
AutoCloseable
@Properties(inherit=cudart.class) public class cudaExternalMemoryMipmappedArrayDesc extends Pointer
External memory mipmap descriptor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter
-
-
Constructor Summary
Constructors Constructor Description cudaExternalMemoryMipmappedArrayDesc()Default native constructor.cudaExternalMemoryMipmappedArrayDesc(long size)Native array allocator.cudaExternalMemoryMipmappedArrayDesc(Pointer p)Pointer cast constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description cudaExtentextent()Dimensions of base level of the mipmap chaincudaExternalMemoryMipmappedArrayDescextent(cudaExtent setter)intflags()Flags associated with CUDA mipmapped arrays.cudaExternalMemoryMipmappedArrayDescflags(int setter)cudaChannelFormatDescformatDesc()Format of base level of the mipmap chaincudaExternalMemoryMipmappedArrayDescformatDesc(cudaChannelFormatDesc setter)cudaExternalMemoryMipmappedArrayDescgetPointer(long i)intnumLevels()Total number of levels in the mipmap chaincudaExternalMemoryMipmappedArrayDescnumLevels(int setter)longoffset()Offset into the memory object where the base level of the mipmap chain is.cudaExternalMemoryMipmappedArrayDescoffset(long setter)cudaExternalMemoryMipmappedArrayDescposition(long position)-
Methods inherited from class org.bytedeco.javacpp.Pointer
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getPointer, getPointer, getPointer, hashCode, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
-
-
-
-
Constructor Detail
-
cudaExternalMemoryMipmappedArrayDesc
public cudaExternalMemoryMipmappedArrayDesc()
Default native constructor.
-
cudaExternalMemoryMipmappedArrayDesc
public cudaExternalMemoryMipmappedArrayDesc(long size)
Native array allocator. Access withPointer.position(long).
-
cudaExternalMemoryMipmappedArrayDesc
public cudaExternalMemoryMipmappedArrayDesc(Pointer p)
Pointer cast constructor. InvokesPointer(Pointer).
-
-
Method Detail
-
position
public cudaExternalMemoryMipmappedArrayDesc position(long position)
-
getPointer
public cudaExternalMemoryMipmappedArrayDesc getPointer(long i)
- Overrides:
getPointerin classPointer
-
offset
@Cast("unsigned long long") public long offset()
Offset into the memory object where the base level of the mipmap chain is.
-
offset
public cudaExternalMemoryMipmappedArrayDesc offset(long setter)
-
formatDesc
@ByRef public cudaChannelFormatDesc formatDesc()
Format of base level of the mipmap chain
-
formatDesc
public cudaExternalMemoryMipmappedArrayDesc formatDesc(cudaChannelFormatDesc setter)
-
extent
@ByRef public cudaExtent extent()
Dimensions of base level of the mipmap chain
-
extent
public cudaExternalMemoryMipmappedArrayDesc extent(cudaExtent setter)
-
flags
@Cast("unsigned int") public int flags()
Flags associated with CUDA mipmapped arrays. See ::cudaMallocMipmappedArray
-
flags
public cudaExternalMemoryMipmappedArrayDesc flags(int setter)
-
numLevels
@Cast("unsigned int") public int numLevels()
Total number of levels in the mipmap chain
-
numLevels
public cudaExternalMemoryMipmappedArrayDesc numLevels(int setter)
-
-