]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture1d.h
Apply FunctionResolver again after DeclarationReorderer
[libs/gl.git] / source / texture1d.h
index 20b1d35cbf88b8ead6421902493e18d3d97aea19..5e6f254977f877a20565e131412bb333f6248ab4 100644 (file)
@@ -8,8 +8,20 @@ namespace GL {
 
 class Texture1D: public Texture
 {
+public:
+       class Loader: public DataFile::DerivedObjectLoader<Texture1D, Texture::Loader>
+       {
+       public:
+               Loader(Texture1D &);
+               Loader(Texture1D &, Collection &);
+       private:
+               void init();
+
+               void raw_data(const std::string &);
+               void storage(PixelFormat, unsigned);
+       };
+
 private:
-       PixelFormat ifmt;
        unsigned width;
        unsigned allocated;
 
@@ -19,10 +31,13 @@ public:
        void storage(PixelFormat, unsigned);
        void allocate(unsigned);
        void image(unsigned, PixelFormat, DataType, const void *);
+       void sub_image(unsigned, int, unsigned, PixelFormat, DataType, const void *);
+       virtual void image(const Graphics::Image &, bool = false);
        unsigned get_width() const { return width; }
 
 private:
-       unsigned get_level_size(unsigned);
+       unsigned get_n_levels() const;
+       unsigned get_level_size(unsigned) const;
 
 public:
        virtual AsyncLoader *load(IO::Seekable &, const Resources * = 0) { return 0; }