]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/buffer.h
Clean up includes and forward declarations for the core classes
[libs/gl.git] / source / core / buffer.h
index 9144afaed3d1682f28efd8076988c8e815a977db..df570d7eb01d2b8bae9f6115adfb2345435c4c53 100644 (file)
@@ -3,8 +3,6 @@
 
 #include <stdexcept>
 #include <string>
-#include <vector>
-#include "gl.h"
 
 namespace Msp {
 namespace GL {
@@ -25,6 +23,10 @@ UniformBlock classes contain built-in support for buffers.
 */
 class Buffer
 {
+       friend class PipelineState;
+       friend class Texture2D;
+       friend class VertexSetup;
+
 private:
        unsigned id;
        unsigned size;
@@ -35,9 +37,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);