]> git.tdb.fi Git - libs/gl.git/blob - source/texture1d.cpp
Implement loading functionality for texture classes that were missing it
[libs/gl.git] / source / texture1d.cpp
1 #include <msp/gl/extensions/msp_texture1d.h>
2 #include "bindable.h"
3 #include "error.h"
4 #include "texture1d.h"
5
6 using namespace std;
7
8 namespace Msp {
9 namespace GL {
10
11 Texture1D::Texture1D():
12         Texture(GL_TEXTURE_1D),
13         ifmt(RGB),
14         width(0),
15         allocated(0)
16 {
17         static Require _req(MSP_texture1D);
18 }
19
20 void Texture1D::storage(PixelFormat fmt, unsigned wd)
21 {
22         if(width>0)
23                 throw invalid_operation("Texture1D::storage");
24         if(wd==0)
25                 throw invalid_argument("Texture1D::storage");
26         require_pixelformat(fmt);
27
28         ifmt = fmt;
29         width = wd;
30 }
31
32 void Texture1D::allocate(unsigned level)
33 {
34         if(allocated&(1<<level))
35                 return;
36
37         PixelFormat base_fmt = get_base_pixelformat(ifmt);
38         image(level, base_fmt, get_alloc_type(base_fmt), 0);
39 }
40
41 void Texture1D::image(unsigned level, PixelFormat fmt, DataType type, const void *data)
42 {
43         if(width==0)
44                 throw invalid_operation("Texture1D::image");
45
46         unsigned w = get_level_size(level);
47
48         BindRestore _bind(this);
49         glTexImage1D(target, level, ifmt, w, 0, fmt, type, data);
50
51         allocated |= 1<<level;
52         if(gen_mipmap && level==0)
53         {
54                 auto_generate_mipmap();
55                 for(; w; w>>=1, ++level) ;
56                 allocated |= (1<<level)-1;
57         }
58 }
59
60 void Texture1D::image(const Graphics::Image &img, bool srgb)
61 {
62         if(img.get_height()!=1)
63                 throw incompatible_data("Texture1D::image");
64
65         unsigned w = img.get_width();
66         PixelFormat fmt = pixelformat_from_graphics(img.get_format());
67         if(width==0)
68                 storage(storage_pixelformat_from_graphics(img.get_format(), srgb), w);
69         else if(w!=width)
70                 throw incompatible_data("Texture1D::image");
71
72         image(0, fmt, UNSIGNED_BYTE, img.get_data());
73 }
74
75 unsigned Texture1D::get_level_size(unsigned level)
76 {
77         return width>>level;
78 }
79
80 UInt64 Texture1D::get_data_size() const
81 {
82         return id ? width*get_pixel_size(ifmt) : 0;
83 }
84
85
86 Texture1D::Loader::Loader(Texture1D &t):
87         DataFile::DerivedObjectLoader<Texture1D, Texture::Loader>(t)
88 {
89         init();
90 }
91
92 Texture1D::Loader::Loader(Texture1D &t, Collection &c):
93         DataFile::DerivedObjectLoader<Texture1D, Texture::Loader>(t, c)
94 {
95         init();
96 }
97
98 void Texture1D::Loader::init()
99 {
100         add("raw_data", &Loader::raw_data);
101         add("storage", &Loader::storage);
102 }
103
104 void Texture1D::Loader::raw_data(const string &data)
105 {
106         obj.image(0, get_base_pixelformat(obj.ifmt), UNSIGNED_BYTE, data.data());
107 }
108
109 void Texture1D::Loader::storage(PixelFormat fmt, unsigned w)
110 {
111         if(srgb)
112                 fmt = get_srgb_pixelformat(fmt);
113         obj.storage(fmt, w);
114 }
115
116 } // namespace GL
117 } // namespace Msp