Class BufferFactory.FloatBufferFactory

    • Constructor Detail

      • FloatBufferFactory

        public FloatBufferFactory​(boolean allocateDirect)
        Constructs a new FloatBufferFactory with the specified buffer allocation policy.
        Parameters:
        allocateDirect - true to allocate and return FloatBufferWrappers backed by direct buffers, false to allocate and return FloatBufferWrappers backed by non-direct buffers.
      • FloatBufferFactory

        public FloatBufferFactory()
        Constructs a new FloatBufferFactory with the default buffer allocation policy. This factory allocates and returns FloatBufferWrappers backed by direct buffers.
    • Method Detail

      • newBuffer

        public BufferWrapper newBuffer​(int size)
        Constructs a new FloatBufferWrapper of the specified size, backed by a FloatBuffer.
        Specified by:
        newBuffer in class BufferFactory
        Parameters:
        size - the new buffer's size, int floats.
        Returns:
        the new buffer.
        Throws:
        java.lang.IllegalArgumentException - if size is negative.