]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture3d.cpp
Rewrite Bind as two different classes
[libs/gl.git] / source / texture3d.cpp
index 3d322d4b9bd9c14834097c81773c085e9bda7584..3846ef1c1294e18d78b183e4208366648c76a46f 100644 (file)
@@ -53,7 +53,7 @@ void Texture3D::image(unsigned level, PixelFormat fmt, DataType type, const void
        unsigned d = depth;
        get_level_size(level, w, h, d);
 
-       Bind _bind(this, true);
+       BindRestore _bind(this);
        glTexImage3D(target, level, ifmt, width, height, depth, 0, fmt, type, data);
 
        allocated |= 1<<level;
@@ -71,7 +71,7 @@ void Texture3D::sub_image(unsigned level, int x, int y, int z, unsigned wd, unsi
 
        allocate(level);
 
-       Bind _bind(this, true);
+       BindRestore _bind(this);
        glTexSubImage3D(target, level, x, y, z, wd, ht, dp, fmt, type, data);
 }
 
@@ -116,7 +116,7 @@ void Texture3D::load_image(const string &fn, int dp)
                throw incompatible_data("Texture3D::load_image");
 
        PixelStore pstore = PixelStore::from_image(img);
-       Bind _bind_ps(pstore, true);
+       BindRestore _bind_ps(pstore);
 
        image(0, fmt, UNSIGNED_BYTE, img.get_data());
 }