X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftexture2d.cpp;h=8ecebdfb6e1748132bf39a14040f5bae8704aa33;hp=ae1afbc60cca9f0e64f05c743af38b0b64241e13;hb=08e19bc2b4eba572bc7699378cf55cd8772ac67e;hpb=3a9ee749fbde41695d1b1a0804bbf63d76427b27 diff --git a/source/texture2d.cpp b/source/texture2d.cpp index ae1afbc6..8ecebdfb 100644 --- a/source/texture2d.cpp +++ b/source/texture2d.cpp @@ -1,3 +1,6 @@ +#include +#include +#include #include "bindable.h" #include "buffer.h" #include "error.h" @@ -50,6 +53,9 @@ void Texture2D::storage(PixelFormat fmt, unsigned wd, unsigned ht) throw invalid_operation("Texture2D::storage"); if(wd==0 || ht==0) throw invalid_argument("Texture2D::storage"); + + if(MSP_sized_internal_formats) + fmt = get_sized_pixelformat(fmt); require_pixelformat(fmt); ifmt = fmt; @@ -62,8 +68,23 @@ void Texture2D::allocate(unsigned level) if(allocated&(1<>=1, h>>=1, ++level) ; - allocated |= (1< _bind(!ARB_direct_state_access, this); allocate(level); - BindRestore _bind(this); - glTexSubImage2D(target, level, x, y, wd, ht, fmt, type, data); + if(ARB_direct_state_access) + glTextureSubImage2D(id, level, x, y, wd, ht, fmt, type, data); + else + glTexSubImage2D(target, level, x, y, wd, ht, fmt, type, data); + + if(gen_mipmap && level==0) + auto_generate_mipmap(); } void Texture2D::image(const Graphics::Image &img, bool srgb) @@ -119,7 +148,14 @@ void Texture2D::image(const Graphics::Image &img, bool srgb, bool from_buffer) image(0, fmt, UNSIGNED_BYTE, from_buffer ? 0 : img.get_data()); } -void Texture2D::get_level_size(unsigned level, unsigned &w, unsigned &h) +unsigned Texture2D::get_n_levels() const +{ + unsigned n = 0; + for(unsigned s=max(width, height); s; s>>=1, ++n) ; + return n; +} + +void Texture2D::get_level_size(unsigned level, unsigned &w, unsigned &h) const { w >>= level; h >>= level;