]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture1d.h
Remove the deprecated ProgramBuilder class
[libs/gl.git] / source / texture1d.h
index b0a9c681e2c4917d05d3a108289d9515a308515b..b14ff917666f88cb02fc7fbbcd5c55a8330b0075 100644 (file)
@@ -36,9 +36,11 @@ public:
        { storage(make_pixelformat(c, UNSIGNED_BYTE), w, l); }
 
        void allocate(unsigned);
-       void image(unsigned, PixelComponents, DataType, const void *);
-       void sub_image(unsigned, int, unsigned, PixelComponents, DataType, const void *);
-       virtual void image(const Graphics::Image &, unsigned, bool = false);
+       void image(unsigned, const void *);
+       DEPRECATED void image(unsigned, PixelComponents, DataType, const void *);
+       void sub_image(unsigned, int, unsigned, const void *);
+       DEPRECATED void sub_image(unsigned, int, unsigned, PixelComponents, DataType, const void *);
+       virtual void image(const Graphics::Image &, unsigned = 0);
        using Texture::image;
        unsigned get_width() const { return width; }