]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture3d.h
Do not clear previous assignments on assignment to array subscript
[libs/gl.git] / source / texture3d.h
index 57f3a6f8589e9d1ea9c986785b477524880b0a76..437c852ab92f943ed569de54eb4c61f6b34402bf 100644 (file)
@@ -27,10 +27,10 @@ public:
        };
 
 private:
-       PixelFormat ifmt;
        unsigned width;
        unsigned height;
        unsigned depth;
+       unsigned levels;
        unsigned allocated;
 
 protected:
@@ -38,9 +38,12 @@ protected:
 public:
        Texture3D();
 
-       /** Defines storage structure for the texture.  Must be called before an
-       image can be uploaded.  Once storage is defined, it can't be changed. */
-       void storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned dp);
+       /** Defines storage structure for the texture.  If lv is zero, the number
+       of mipmap levels is automatically determined from storage dimensions.
+
+       Must be called before an image can be uploaded.  Once storage is defined,
+       it can't be changed. */
+       void storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned dp, unsigned lv = 0);
 
        /** Allocates storage for the texture.  The contents are initially
        undefined.  If storage has already been allocated, does nothing. */