]> git.tdb.fi Git - libs/gl.git/blob - source/core/texture.h
Fix reflection of image types from Spir-V modules
[libs/gl.git] / source / core / texture.h
1 #ifndef MSP_GL_TEXTURE_H_
2 #define MSP_GL_TEXTURE_H_
3
4 #include <msp/datafile/dynamicobjectloader.h>
5 #include <msp/datafile/objectloader.h>
6 #include <msp/graphics/image.h>
7 #include "pixelformat.h"
8 #include "resource.h"
9 #include "texture_backend.h"
10
11 namespace Msp {
12 namespace GL {
13
14 /**
15 Base class for textures.  Most operations are defined in subclasses.
16
17 Memory must be allocated for the texture by calling storage().  Each subclass
18 provides this function with parameters appropriate to that type of texture.
19 Contents can then be modified using the image() and sub_image() functions
20 provided by subclasses.
21
22 Most types of textures can consist of a pyramid of images, called a mipmap.
23 The dimensions of each mipmap level are half that of the previous level.
24
25 Textures can be used as either a data source or target for draw commands.  To
26 read from a texture in a shader, it must be paired with a Sampler to determine
27 how the texels are accessed.  To draw into a texture, it must be attached to a
28 Framebuffer.
29 */
30 class Texture: public TextureBackend, public Resource
31 {
32         friend TextureBackend;
33
34 protected:
35         class Loader: public DataFile::CollectionObjectLoader<Texture>
36         {
37         protected:
38                 unsigned levels;
39
40         public:
41                 Loader(Texture &t): Loader(t, 0) { }
42                 Loader(Texture &t, Collection &c): Loader(t, &c) { }
43         private:
44                 Loader(Texture &, Collection *);
45
46                 virtual void finish();
47
48         protected:
49                 void load_external_image(Graphics::Image &, const std::string &);
50
51         private:
52                 void external_data(const std::string &);
53                 void external_image(bool, const std::string &);
54                 void generate_mipmap(bool);
55                 void image_data(const std::string &);
56                 void mipmap_levels(unsigned);
57                 void raw_data(const std::string &);
58         };
59
60 public:
61         class GenericLoader: public DataFile::DynamicObjectLoader<Texture>
62         {
63                 friend class Texture;
64
65         public:
66                 GenericLoader(Collection &c): DynamicObjectLoader<Texture>(&c) { }
67
68         protected:
69                 virtual const TypeRegistry &get_type_registry() const { return get_texture_registry(); }
70         };
71
72 protected:
73         PixelFormat format;
74         PixelFormat storage_fmt;
75         ComponentSwizzle swizzle;
76         bool use_srgb_format;
77         bool auto_gen_mipmap;
78
79         Texture(unsigned);
80
81         void set_format(PixelFormat);
82
83 public:
84         PixelFormat get_format() const { return format; }
85
86         using TextureBackend::generate_mipmap;
87
88         /** Replaces contents of an entire mipmap level.  Allocated storage must
89         exist.  The image data is interpreted according to the storage format and
90         must have size matching the selected mipmap level. */
91         virtual void image(unsigned level, const void *) = 0;
92
93         /** Loads an image into the texture from a file. */
94         virtual void load_image(const std::string &, unsigned = 0);
95
96         /** Sets the texture's contents from an image.  If storage has not been
97         allocated yet, it will be set to match the image.  Otherwise the image must
98         be compatible with the existing storage.  Subclasses may impose restrictions
99         on the image's dimensions. */
100         virtual void image(const Graphics::Image &, unsigned = 0) = 0;
101
102         virtual std::size_t get_data_size() const { return 0; }
103
104         using TextureBackend::set_debug_name;
105
106 private:
107         static GenericLoader::TypeRegistry &get_texture_registry();
108 };
109
110 } // namespace GL
111 } // namespace Msp
112
113 #endif