]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/texture3d.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / core / texture3d.h
index 3009e1487a6d57b48ecfb03dd47665db532287e1..e7e3a79e951909f081349e32a53661b5f844cb1a 100644 (file)
@@ -32,7 +32,6 @@ protected:
        unsigned width = 0;
        unsigned height = 0;
        unsigned depth = 0;
-       unsigned levels = 0;
 
        Texture3D(unsigned);
 public:
@@ -63,7 +62,6 @@ public:
        unsigned get_height() const { return height; }
        unsigned get_depth() const { return depth; }
 protected:
-       unsigned get_n_levels() const;
        LinAl::Vector<unsigned, 3> get_level_size(unsigned) const;
 };