X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fbuffer.h;h=db0ff025f3b1f816283fe0bed7a696d95d7ccff9;hb=2e09b4f72f06537431151fe8b2574e1aa886ad48;hp=0d656131dd331b75ec3af57ff81581c9e2b2a3a5;hpb=6065f6622cc275dc0b20baaf7c267e71169d18f3;p=libs%2Fgl.git diff --git a/source/core/buffer.h b/source/core/buffer.h index 0d656131..db0ff025 100644 --- a/source/core/buffer.h +++ b/source/core/buffer.h @@ -25,10 +25,12 @@ UniformBlock classes contain built-in support for buffers. */ class Buffer { + friend class PipelineState; + friend class VertexSetup; + private: unsigned id; unsigned size; - bool allocated; static Buffer *scratch_binding; @@ -43,10 +45,6 @@ public: be uploaded. Storage cannot be changed once set. */ void storage(unsigned); - /** Allocates storage for the buffer. The contents are initially undefined. - If storage has already been allocated, does nothing. */ - void allocate(); - /** Uploads data into the buffer, completely replacing any previous contents. Storage must be defined beforehand. The data must have size matching the defined storage. */