Android Utililty Methods IntBuffer to ByteBuffer Convert

List of utility methods to do IntBuffer to ByteBuffer Convert

Description

The list of methods to do IntBuffer to ByteBuffer Convert are organized into topic(s).

Method

ByteBuffercopyIntBufferAsByteBuffer( IntBuffer paramIntBuffer)
copy Int Buffer As Byte Buffer
ByteBuffer localByteBuffer = newByteBuffer(paramIntBuffer
        .remaining() * 4);
paramIntBuffer.mark();
localByteBuffer.asIntBuffer().put(paramIntBuffer);
paramIntBuffer.reset();
localByteBuffer.rewind();
return localByteBuffer;