]> git.tdb.fi Git - libs/gl.git/blob - source/texture1d.cpp
Prefer sized internal formats when possible
[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
27         if(MSP_sized_internal_formats)
28                 fmt = get_sized_pixelformat(fmt);
29         require_pixelformat(fmt);
30
31         ifmt = fmt;
32         width = wd;
33 }
34
35 void Texture1D::allocate(unsigned level)
36 {
37         if(allocated&(1<<level))
38                 return;
39
40         PixelFormat base_fmt = get_base_pixelformat(ifmt);
41         image(level, base_fmt, get_alloc_type(base_fmt), 0);
42 }
43
44 void Texture1D::image(unsigned level, PixelFormat fmt, DataType type, const void *data)
45 {
46         if(width==0)
47                 throw invalid_operation("Texture1D::image");
48
49         unsigned w = get_level_size(level);
50
51         BindRestore _bind(this);
52         glTexImage1D(target, level, ifmt, w, 0, fmt, type, data);
53
54         allocated |= 1<<level;
55         if(gen_mipmap && level==0)
56         {
57                 auto_generate_mipmap();
58                 for(; w; w>>=1, ++level) ;
59                 allocated |= (1<<level)-1;
60         }
61 }
62
63 void Texture1D::sub_image(unsigned level, int x, unsigned wd, PixelFormat fmt, DataType type, const void *data)
64 {
65         if(width==0)
66                 throw invalid_operation("Texture3D::image");
67
68         allocate(level);
69
70         BindRestore _bind(this);
71         glTexSubImage1D(target, level, x, wd, fmt, type, data);
72 }
73
74 void Texture1D::image(const Graphics::Image &img, bool srgb)
75 {
76         if(img.get_height()!=1)
77                 throw incompatible_data("Texture1D::image");
78
79         unsigned w = img.get_width();
80         PixelFormat fmt = pixelformat_from_graphics(img.get_format());
81         if(width==0)
82                 storage(storage_pixelformat_from_graphics(img.get_format(), srgb), w);
83         else if(w!=width)
84                 throw incompatible_data("Texture1D::image");
85
86         image(0, fmt, UNSIGNED_BYTE, img.get_data());
87 }
88
89 unsigned Texture1D::get_level_size(unsigned level)
90 {
91         return width>>level;
92 }
93
94 UInt64 Texture1D::get_data_size() const
95 {
96         return id ? width*get_pixel_size(ifmt) : 0;
97 }
98
99
100 Texture1D::Loader::Loader(Texture1D &t):
101         DataFile::DerivedObjectLoader<Texture1D, Texture::Loader>(t)
102 {
103         init();
104 }
105
106 Texture1D::Loader::Loader(Texture1D &t, Collection &c):
107         DataFile::DerivedObjectLoader<Texture1D, Texture::Loader>(t, c)
108 {
109         init();
110 }
111
112 void Texture1D::Loader::init()
113 {
114         add("raw_data", &Loader::raw_data);
115         add("storage", &Loader::storage);
116 }
117
118 void Texture1D::Loader::raw_data(const string &data)
119 {
120         obj.image(0, get_base_pixelformat(obj.ifmt), UNSIGNED_BYTE, data.data());
121 }
122
123 void Texture1D::Loader::storage(PixelFormat fmt, unsigned w)
124 {
125         if(srgb)
126                 fmt = get_srgb_pixelformat(fmt);
127         obj.storage(fmt, w);
128 }
129
130 } // namespace GL
131 } // namespace Msp