]> git.tdb.fi Git - libs/gl.git/blob - source/texture3d.h
Fix an incorrect negation
[libs/gl.git] / source / texture3d.h
1 #ifndef MSP_GL_TEXTURE3D_H_
2 #define MSP_GL_TEXTURE3D_H_
3
4 #include <string>
5 #include "texture.h"
6
7 namespace Msp {
8 namespace GL {
9
10 /**
11 Three-dimensional texture.  Consists of an array of texels in the shape of a
12 right cuboid.  Texture coordinates have a principal range of [0, 1].
13 */
14 class Texture3D: public Texture
15 {
16 public:
17         class Loader: public Msp::DataFile::DerivedObjectLoader<Texture3D, Texture::Loader>
18         {
19         public:
20                 Loader(Texture3D &);
21                 Loader(Texture3D &, Collection &);
22         private:
23                 void init();
24
25                 void raw_data(const std::string &);
26                 void storage(PixelFormat, unsigned, unsigned, unsigned);
27         };
28
29 private:
30         unsigned width;
31         unsigned height;
32         unsigned depth;
33         unsigned allocated;
34
35 protected:
36         Texture3D(GLenum);
37 public:
38         Texture3D();
39
40         /** Defines storage structure for the texture.  Must be called before an
41         image can be uploaded.  Once storage is defined, it can't be changed. */
42         void storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned dp);
43
44         /** Allocates storage for the texture.  The contents are initially
45         undefined.  If storage has already been allocated, does nothing. */
46         void allocate(unsigned level);
47
48         /** Uploads an image to the texture.  Storage must be defined beforehand.
49         The image data must have dimensions and format compatible with the defined
50         storage. */
51         void image(unsigned level, PixelFormat fmt, DataType type, const void *data);
52
53         /** Updates a cuboid-shaped region of the texture.  Storage must be defined
54         and allocated beforehand.  The update region must be fully inside the
55         texture. */
56         void sub_image(unsigned level,
57                 int x, int y, int z, unsigned wd, unsigned ht, unsigned dp,
58                 PixelFormat fmt, DataType type, const void *data);
59
60         /** Loads an image from a file and uploads it to the texture.  If storage
61         has not been defined, it will be set to match the loaded image.  To
62         construct a three-dimensional texture from a two-dimensional image, the
63         image is interpreted as an array of consecutive images.  If dp is -1, the
64         texture's width and height are equal.  If dp is -2, the texture's height and
65         depth are equal.  Otherwise, dp must be positive and determines the
66         texture's depth.  In all cases, the image's height must equal the texture's
67         height times its depth.
68         
69         Deprecated in favor of the base class version.*/
70         void load_image(const std::string &fn, int dp = -1);
71
72         using Texture::load_image;
73
74         /** Uploads an image to the texture.  If storage has not been defined, it
75         will be set to match the image.  In this case the image will be treated as
76         a stack of square layers and its height must be divisible by its width.
77         Otherwise the image must be compatible with the defined storage.
78
79         If srgb is true and storage is determined by this call, then an sRGB pixel
80         format will be used. */
81         virtual void image(const Graphics::Image &, bool = false);
82
83         unsigned get_width() const { return width; }
84         unsigned get_height() const { return height; }
85         unsigned get_depth() const { return depth; }
86 protected:
87         unsigned get_n_levels() const;
88         void get_level_size(unsigned, unsigned &, unsigned &, unsigned &) const;
89
90 public:
91         virtual AsyncLoader *load(IO::Seekable &, const Resources * = 0) { return 0; }
92         virtual UInt64 get_data_size() const;
93         virtual void unload() { }
94 };
95
96 } // namespace GL
97 } // namespace Msp
98
99 #endif