]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/texture3d.h
Rewrite state management
[libs/gl.git] / source / core / texture3d.h
index df52bf66ee8daeb1e1a879440c63ed52ab799833..2a8f653cd04422c333a1dcb81e937978dee38fda 100644 (file)
@@ -53,11 +53,19 @@ public:
        undefined.  If storage has already been allocated, does nothing. */
        void allocate(unsigned level);
 
+private:
+       void allocate_(unsigned);
+
+public:
        /** Updates the contents of the entire texture.  Storage must be defined
        beforehand.  The image data must have dimensions and format matching the
        defined storage. */
        void image(unsigned level, const void *data);
 
+private:
+       void image_(unsigned, const void *);
+
+public:
        DEPRECATED void image(unsigned level, PixelComponents comp, DataType type, const void *data);
 
        /** Updates a cuboid-shaped region of the texture.  Storage must be defined