X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Ftexturecube.cpp;h=a2c6c8eb62725c21ce21553cf30926b01fe127e8;hb=7b569bbfcfb65d8d88b47ac42ee1df6a7d27e784;hp=543bb9d40ec00e954ce894d9699e86c364405dd8;hpb=2b7f8e45e75bec30c1ea27fc0efd8286f67adc3f;p=libs%2Fgl.git diff --git a/source/core/texturecube.cpp b/source/core/texturecube.cpp index 543bb9d4..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"); - unsigned s = get_level_size(level); + unsigned lsz = get_level_size(level); if(ARB_texture_storage) - return sub_image(face, level, 0, 0, s, s, data); - - BindRestore _bind(this); + 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(); @@ -191,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()); } @@ -217,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)