Uses of Class
javax.media.ding3d.Ding3dBuffer

Packages that use Ding3dBuffer
javax.media.ding3d Provides the core set of classes for the 3D graphics API for the Java platform; click here for more information, including explanatory material that was formerly found in the guide. 
javax.media.ding3d.internal   
javax.media.ding3d.utils.geometry.compression Provides compressed geometry utility classes. 
 

Uses of Ding3dBuffer in javax.media.ding3d
 

Methods in javax.media.ding3d that return Ding3dBuffer
 Ding3dBuffer GeometryArray.getColorRefBuffer()
          Gets the color array buffer reference.
 Ding3dBuffer CompressedGeometry.getCompressedGeometryBuffer()
          Deprecated. Gets the compressed geometry data buffer reference, which is always null since NIO buffers are not supported for CompressedGeometry objects.
 Ding3dBuffer GeometryArray.getCoordRefBuffer()
          Gets the coordinate array buffer reference.
 Ding3dBuffer GeometryArray.getInterleavedVertexBuffer()
          Gets the interleaved vertex array buffer reference.
 Ding3dBuffer GeometryArray.getNormalRefBuffer()
          Gets the normal array buffer reference.
 Ding3dBuffer GeometryArray.getTexCoordRefBuffer(int texCoordSet)
          Gets the texture coordinate array buffer reference for the specified texture coordinate set.
 Ding3dBuffer GeometryArray.getVertexAttrRefBuffer(int vertexAttrNum)
          Gets the vertex attribute array buffer reference for the specified vertex attribute number.
 

Methods in javax.media.ding3d with parameters of type Ding3dBuffer
 void GeometryArray.setColorRefBuffer(Ding3dBuffer colors)
          Sets the color buffer reference to the specified buffer object.
 void GeometryArray.setCoordRefBuffer(Ding3dBuffer coords)
          Sets the coordinate buffer reference to the specified buffer object.
 void GeometryArray.setInterleavedVertexBuffer(Ding3dBuffer vertexData)
          Sets the interleaved vertex buffer reference to the specified buffer object.
 void GeometryArray.setNormalRefBuffer(Ding3dBuffer normals)
          Sets the normal buffer reference to the specified buffer object.
 void GeometryArray.setTexCoordRefBuffer(int texCoordSet, Ding3dBuffer texCoords)
          Sets the texture coordinate buffer reference for the specified texture coordinate set to the specified buffer object.
 void GeometryArray.setVertexAttrRefBuffer(int vertexAttrNum, Ding3dBuffer vertexAttrs)
          Sets the vertex attribute buffer reference for the specified vertex attribute number to the specified buffer object.
 

Constructors in javax.media.ding3d with parameters of type Ding3dBuffer
CompressedGeometry(CompressedGeometryHeader hdr, Ding3dBuffer compressedGeometry)
          Deprecated. This constructor is not implemented.
 

Uses of Ding3dBuffer in javax.media.ding3d.internal
 

Methods in javax.media.ding3d.internal that return Ding3dBuffer
 Ding3dBuffer FloatBufferWrapper.getDing3dBuffer()
          Creates and returns a Ding3dBuffer object containing the buffer in this FloatBufferWrapper object.
 Ding3dBuffer DoubleBufferWrapper.getDing3dBuffer()
          Creates and returns a Ding3dBuffer object containing the buffer in this DoubleBufferWrapper object.
 Ding3dBuffer ByteBufferWrapper.getDing3dBuffer()
          Creates and returns a Ding3dBuffer object containing the buffer in this ByteBufferWrapper object.
 

Methods in javax.media.ding3d.internal with parameters of type Ding3dBuffer
static int BufferWrapper.getBufferType(Ding3dBuffer b)
           
 

Constructors in javax.media.ding3d.internal with parameters of type Ding3dBuffer
ByteBufferWrapper(Ding3dBuffer b)
          Constructor initializes buffer with a javax.media.ding3d.Ding3dBuffer object.
DoubleBufferWrapper(Ding3dBuffer b)
          Constructor initializes buffer with a javax.media.ding3d.Ding3dBuffer object.
FloatBufferWrapper(Ding3dBuffer b)
          Constructor initializes buffer with a javax.media.ding3d.Ding3dBuffer object.
 

Uses of Ding3dBuffer in javax.media.ding3d.utils.geometry.compression
 

Methods in javax.media.ding3d.utils.geometry.compression that return Ding3dBuffer
 Ding3dBuffer CompressedGeometryData.getCompressedGeometryBuffer()
          Gets the compressed geometry data buffer reference, which is always null since NIO buffers are not supported for CompressedGeometryData objects.
 

Constructors in javax.media.ding3d.utils.geometry.compression with parameters of type Ding3dBuffer
CompressedGeometryData(CompressedGeometryData.Header hdr, Ding3dBuffer compressedGeometry)
          Creates a new CompressedGeometryData object.