Interface IBuffer

  • All Superinterfaces:
    java.lang.AutoCloseable, java.io.Closeable
    All Known Subinterfaces:
    IIndexBuffer, IVertexBuffer

    public interface IBuffer
    extends java.io.Closeable
    The base interface of all managed buffers used in rendering
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getSize()
      Size of this buffer in bytes
      void loadData​(byte[] data)
      Load the data into current buffer
      • Methods inherited from interface java.io.Closeable

        close
    • Method Detail

      • getSize

        int getSize()
        Size of this buffer in bytes
      • loadData

        void loadData​(byte[] data)
        Load the data into current buffer
        Parameters:
        data -