]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture3d.cpp
Remove the deprecated ProgramBuilder class
[libs/gl.git] / source / texture3d.cpp
index 667f8c31c1ede8dfe9c1896159eaa263385738be..03c58d0afdf05e6273cfbbea2892ea2d7e067ca9 100644 (file)
@@ -142,22 +142,11 @@ void Texture3D::image(const Graphics::Image &img, unsigned lv)
 {
        unsigned w = img.get_width();
        unsigned h = img.get_height();
-       unsigned d = 1;
 
-       if(depth)
-       {
-               if(h%depth)
-                       throw incompatible_data("Texture3D::load_image");
-               h /= depth;
-               d = depth;
-       }
-       else
-       {
-               if(h%w)
-                       throw incompatible_data("Texture3D::load_image");
-               d = h/w;
-               h = w;
-       }
+       if(h%w)
+               throw incompatible_data("Texture3D::load_image");
+       unsigned d = h/w;
+       h = w;
 
        PixelFormat fmt = pixelformat_from_image(img);
        if(width==0)
@@ -168,7 +157,7 @@ void Texture3D::image(const Graphics::Image &img, unsigned lv)
        PixelStore pstore = PixelStore::from_image(img);
        BindRestore _bind_ps(pstore);
 
-       image(0, img.get_data());
+       image(0, img.get_pixels());
 }
 
 unsigned Texture3D::get_n_levels() const