]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture2darray.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / texture2darray.h
diff --git a/source/texture2darray.h b/source/texture2darray.h
deleted file mode 100644 (file)
index bd7d03b..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef MSP_GL_TEXTURE2DARRAY_H_
-#define MSP_GL_TEXTURE2DARRAY_H_
-
-#include "texture3d.h"
-
-namespace Msp {
-namespace GL {
-
-/**
-An array of two-dimensional textures.  It's very much like a 3D texture, with
-two important differences: there's no filtering nor mipmapping along the third
-dimension.
-*/
-class Texture2DArray: public Texture3D
-{
-public:
-       class Loader: public Msp::DataFile::DerivedObjectLoader<Texture2DArray, Texture3D::Loader>
-       {
-       public:
-               Loader(Texture2DArray &);
-               Loader(Texture2DArray &, Collection &);
-       private:
-               void init();
-
-               void external_image(unsigned, const std::string &);
-       };
-
-       Texture2DArray();
-
-       void layer_image(unsigned, unsigned, const void *);
-       DEPRECATED void layer_image(unsigned, unsigned, PixelComponents, DataType, const void *);
-       void layer_image(unsigned, unsigned, const Graphics::Image &);
-
-       unsigned get_layers() const { return get_depth(); }
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif