]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/buffer.h
Refactor uploading texture data from a buffer
[libs/gl.git] / source / core / buffer.h
index db0ff025f3b1f816283fe0bed7a696d95d7ccff9..0fb2cde18d68f9ca29859d6db578396ff7e5d125 100644 (file)
@@ -26,6 +26,7 @@ UniformBlock classes contain built-in support for buffers.
 class Buffer
 {
        friend class PipelineState;
+       friend class Texture2D;
        friend class VertexSetup;
 
 private:
@@ -38,9 +39,6 @@ public:
        Buffer();
        ~Buffer();
 
-       /** Returns the OpenGL ID of the buffer.  For internal use only. */
-       unsigned get_id() const { return id; }
-
        /** Defines the storage size of the buffer.  Must be called before data can
        be uploaded.  Storage cannot be changed once set. */
        void storage(unsigned);