X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Ftexturecube.cpp;h=a2c6c8eb62725c21ce21553cf30926b01fe127e8;hb=7b569bbfcfb65d8d88b47ac42ee1df6a7d27e784;hp=93faa3703ab993ee29e05710347c56be82c3bca2;hpb=aff68a183a4b33653750acc57a021fd7ed6c555c;p=libs%2Fgl.git diff --git a/source/core/texturecube.cpp b/source/core/texturecube.cpp index 93faa370..a2c6c8eb 100644 --- a/source/core/texturecube.cpp +++ b/source/core/texturecube.cpp @@ -5,9 +5,7 @@ #include #include #include -#include "bindable.h" #include "error.h" -#include "pixelstore.h" #include "texturecube.h" using namespace std; @@ -84,11 +82,14 @@ void TextureCube::allocate(unsigned level) if(ARB_texture_storage) { - Conditional _bind(!ARB_direct_state_access, this); + GLenum fmt = get_gl_pixelformat(storage_fmt); if(ARB_direct_state_access) - glTextureStorage2D(id, levels, storage_fmt, size, size); + glTextureStorage2D(id, levels, fmt, size, size); else - glTexStorage2D(target, levels, storage_fmt, size, size); + { + bind_scratch(); + glTexStorage2D(target, levels, fmt, size, size); + } apply_swizzle(); allocated |= (64<=levels) throw out_of_range("TextureCube::image"); - if(ARB_texture_storage) - return sub_image(face, level, 0, 0, s, s, data); + unsigned lsz = get_level_size(level); - BindRestore _bind(this); + if(ARB_texture_storage) + return sub_image(face, level, 0, 0, lsz, lsz, data); if(!allocated) { @@ -119,9 +118,10 @@ void TextureCube::image(TextureCubeFace face, unsigned level, const void *data) apply_swizzle(); } - PixelComponents comp = get_components(storage_fmt); + GLenum fmt = get_gl_pixelformat(storage_fmt); + GLenum comp = get_gl_components(get_components(storage_fmt)); GLenum type = get_gl_type(get_component_type(storage_fmt)); - glTexImage2D(face, level, storage_fmt, s, s, 0, comp, type, data); + glTexImage2D(face, level, fmt, lsz, lsz, 0, comp, type, data); if(level==0) { @@ -129,7 +129,7 @@ void TextureCube::image(TextureCubeFace face, unsigned level, const void *data) if((allocated&63)==63) { allocated |= 64; - if(auto_gen_mipmap) + if(auto_gen_mipmap && level==0 && (allocated&63)==63) { generate_mipmap(); allocated |= (64<=levels) + throw out_of_range("TextureCube::sub_image"); - Conditional _bind(!ARB_direct_state_acess, this); allocate(level); - PixelComponents comp = get_components(storage_fmt); + GLenum comp = get_gl_components(get_components(storage_fmt)); GLenum type = get_gl_type(get_component_type(storage_fmt)); if(ARB_direct_state_access) glTextureSubImage3D(id, level, x, y, get_face_index(face), wd, ht, 1, comp, type, data); else + { + bind_scratch(); glTexSubImage2D(face, level, x, y, wd, ht, comp, type, data); + } if(auto_gen_mipmap && level==0) generate_mipmap(); @@ -189,9 +193,6 @@ void TextureCube::image(TextureCubeFace face, const Graphics::Image &img) PixelFormat fmt = pixelformat_from_image(img); storage(make_pixelformat(get_components(fmt), get_component_type(fmt), use_srgb_format), w); - PixelStore pstore = PixelStore::from_image(img); - BindRestore _bind_ps(pstore); - image(face, 0, img.get_pixels()); } @@ -215,9 +216,6 @@ void TextureCube::image(const Graphics::Image &img, unsigned lv) else if(w!=size || h!=size) throw incompatible_data("TextureCube::image"); - PixelStore pstore = PixelStore::from_image(img); - BindRestore _bind_ps(pstore); - const char *pixels = reinterpret_cast(img.get_pixels()); unsigned face_size = img.get_stride()*size; for(unsigned i=0; i<6; ++i)