1 #ifndef MSP_GL_TEXTURE2D_H_
2 #define MSP_GL_TEXTURE2D_H_
5 #include <msp/linal/vector.h>
14 Two-dimensional texture. Consists of an array of texels in the shape of a
15 rectangle. Texture coordinate have a range of [0, 1]. Coordinates outside of
16 this range are subject to wrapping. This is the most common type of texture.
18 class Texture2D: public Texture
21 class Loader: public Msp::DataFile::DerivedObjectLoader<Texture2D, Texture::Loader>
25 Loader(Texture2D &, Collection &);
29 void raw_data(const std::string &);
30 void storage(PixelFormat, unsigned, unsigned);
31 void storage_levels(PixelFormat, unsigned, unsigned, unsigned);
42 Texture2D(ResourceManager * = 0);
45 /** Defines storage structure for the texture. If lv is zero, the number
46 of mipmap levels is automatically determined from storage dimensions.
48 Must be called before an image can be uploaded. Once storage is defined,
49 it can't be changed. */
50 void storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned lv = 0);
52 /** Updates the contents of the entire texture. Storage must be defined
53 beforehand. The image data must have dimensions and format matching the
55 virtual void image(unsigned level, const void *data);
57 /** Updates a rectangular region of the texture. Storage must be defined
58 beforehand. The image data must be in a format mathing the defined storage
59 and the update region must be fully inside the texture. */
60 void sub_image(unsigned level, int x, int y, unsigned wd, unsigned ht, const void *data);
63 void sub_image(unsigned, int, int, unsigned, unsigned, const Buffer &, unsigned);
66 /** Updates the contents of the entire texture from an image. If storage
67 has not been defined, it will be set to match the image. Otherwise the
68 image must match the defined storage. */
69 virtual void image(const Graphics::Image &, unsigned lv = 0);
73 unsigned get_width() const { return width; }
74 unsigned get_height() const { return height; }
77 unsigned get_n_levels() const;
78 LinAl::Vector<unsigned, 2> get_level_size(unsigned) const;
81 virtual Resource::AsyncLoader *load(IO::Seekable &, const Resources * = 0);
82 virtual std::uint64_t get_data_size() const;
83 virtual void unload();