]> git.tdb.fi Git - libs/gl.git/blob - source/core/texture2d.h
Remove the separate allocation step from textures and buffers
[libs/gl.git] / source / core / texture2d.h
1 #ifndef MSP_GL_TEXTURE2D_H_
2 #define MSP_GL_TEXTURE2D_H_
3
4 #include <string>
5 #include <msp/graphics/image.h>
6 #include <msp/linal/vector.h>
7 #include "texture.h"
8
9 namespace Msp {
10 namespace GL {
11
12 /**
13 Two-dimensional texture.  Consists of an array of texels in the shape of a
14 rectangle.  Texture coordinate have a range of [0, 1].  Coordinates outside of
15 this range are subject to wrapping.  This is the most common type of texture.
16 */
17 class Texture2D: public Texture
18 {
19 public:
20         class Loader: public Msp::DataFile::DerivedObjectLoader<Texture2D, Texture::Loader>
21         {
22         public:
23                 Loader(Texture2D &);
24                 Loader(Texture2D &, Collection &);
25         private:
26                 void init();
27
28                 void raw_data(const std::string &);
29                 void storage(PixelFormat, unsigned, unsigned);
30                 void storage_levels(PixelFormat, unsigned, unsigned, unsigned);
31         };
32
33 private:
34         class AsyncLoader;
35
36         unsigned width;
37         unsigned height;
38         unsigned levels;
39
40 public:
41         Texture2D(ResourceManager * = 0);
42         virtual ~Texture2D();
43
44         /** Defines storage structure for the texture.  If lv is zero, the number
45         of mipmap levels is automatically determined from storage dimensions.
46
47         Must be called before an image can be uploaded.  Once storage is defined,
48         it can't be changed. */
49         void storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned lv = 0);
50
51         /** Updates the contents of the entire texture.  Storage must be defined
52         beforehand.  The image data must have dimensions and format matching the
53         defined storage. */
54         virtual void image(unsigned level, const void *data);
55
56         /** Updates a rectangular region of the texture.  Storage must be defined
57         beforehand.  The image data must be in a format mathing the defined storage
58         and the update region must be fully inside the texture. */
59         void sub_image(unsigned level, int x, int y, unsigned wd, unsigned ht, const void *data);
60
61         /** Updates the contents of the entire texture from an image.  If storage
62         has not been defined, it will be set to match the image.  Otherwise the
63         image must match the defined storage. */
64         virtual void image(const Graphics::Image &, unsigned lv = 0);
65
66         using Texture::image;
67
68 private:
69         void image(const Graphics::Image &, unsigned, bool);
70
71 public:
72         unsigned get_width() const { return width; }
73         unsigned get_height() const { return height; }
74
75 private:
76         unsigned get_n_levels() const;
77         LinAl::Vector<unsigned, 2> get_level_size(unsigned) const;
78
79 public:
80         virtual Resource::AsyncLoader *load(IO::Seekable &, const Resources * = 0);
81         virtual std::uint64_t get_data_size() const;
82         virtual void unload();
83 };
84
85 } // namespace GL
86 } // namespace Msp
87
88 #endif