X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftexture1d.h;h=b14ff917666f88cb02fc7fbbcd5c55a8330b0075;hp=5e6f254977f877a20565e131412bb333f6248ab4;hb=bec07999d95b76f4b47cffcc564d0cd0afc0435e;hpb=cdf928f03f4d8383b8fa978abc4c255a850ec061 diff --git a/source/texture1d.h b/source/texture1d.h index 5e6f2549..b14ff917 100644 --- a/source/texture1d.h +++ b/source/texture1d.h @@ -19,20 +19,29 @@ public: void raw_data(const std::string &); void storage(PixelFormat, unsigned); + void storage_levels(PixelFormat, unsigned, unsigned); }; private: unsigned width; + unsigned levels; unsigned allocated; public: Texture1D(); - void storage(PixelFormat, unsigned); + void storage(PixelFormat, unsigned, unsigned = 0); + + DEPRECATED void storage(PixelComponents c, unsigned w, unsigned l = 0) + { storage(make_pixelformat(c, UNSIGNED_BYTE), w, l); } + 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); + 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; } private: