]> git.tdb.fi Git - libs/gl.git/commitdiff
Graphics::Image::get_data was renamed to get_pixels
authorMikko Rasa <tdb@tdb.fi>
Sun, 7 Feb 2021 13:24:59 +0000 (15:24 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 7 Feb 2021 13:24:59 +0000 (15:24 +0200)
source/texture1d.cpp
source/texture2d.cpp
source/texture2darray.cpp
source/texture3d.cpp
source/texturecube.cpp

index 592e4d77d81e961a8e08a617f4f78400dee43a68..742857be725b4ed205b369c43d823f5b0812af14 100644 (file)
@@ -131,7 +131,7 @@ void Texture1D::image(const Graphics::Image &img, unsigned lv)
        else if(w!=width)
                throw incompatible_data("Texture1D::image");
 
-       image(0, img.get_data());
+       image(0, img.get_pixels());
 }
 
 unsigned Texture1D::get_n_levels() const
index cee932f7231e9fb23adcfb4ce86ba28e736dd17a..311a3e4569704c92b99703c4a0473f508778c9e1 100644 (file)
@@ -165,7 +165,7 @@ void Texture2D::image(const Graphics::Image &img, unsigned lv, bool from_buffer)
        PixelStore pstore = PixelStore::from_image(img);
        BindRestore _bind_ps(pstore);
 
-       image(0, from_buffer ? 0 : img.get_data());
+       image(0, from_buffer ? 0 : img.get_pixels());
 }
 
 unsigned Texture2D::get_n_levels() const
@@ -270,7 +270,7 @@ bool Texture2D::AsyncLoader::process()
        }
        else if(phase==2)
        {
-               const char *data = reinterpret_cast<const char *>(image.get_data());
+               const char *data = reinterpret_cast<const char *>(image.get_pixels());
                copy(data, data+n_bytes, mapped_address);
        }
        else if(phase==3)
index 4d37263c76b75c59ddb06f5e03d6e0096cd43439..1ecb4cf2be69e1b34a28f1f8b8cea643b84e2325 100644 (file)
@@ -48,7 +48,7 @@ void Texture2DArray::layer_image(unsigned level, unsigned z, const Graphics::Ima
        PixelStore pstore = PixelStore::from_image(img);
        BindRestore _bind_ps(pstore);
 
-       layer_image(level, z, img.get_data());
+       layer_image(level, z, img.get_pixels());
 }
 
 
index 1f62e050db9897ccc8dcff5511efbe94a0f6fb83..03c58d0afdf05e6273cfbbea2892ea2d7e067ca9 100644 (file)
@@ -157,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
index 9ea33eabc1658213c63082a6e09dd5037d3380af..6ec3662523dea02903e024bb9113b91125e4b711 100644 (file)
@@ -183,7 +183,7 @@ void TextureCube::image(TextureCubeFace face, const Graphics::Image &img)
        PixelStore pstore = PixelStore::from_image(img);
        BindRestore _bind_ps(pstore);
 
-       image(face, 0, img.get_data());
+       image(face, 0, img.get_pixels());
 }
 
 void TextureCube::image(TextureCubeFace face, const Graphics::Image &img, bool)
@@ -209,10 +209,10 @@ void TextureCube::image(const Graphics::Image &img, unsigned lv)
        PixelStore pstore = PixelStore::from_image(img);
        BindRestore _bind_ps(pstore);
 
-       const char *cdata = reinterpret_cast<const char *>(img.get_data());
+       const char *pixels = reinterpret_cast<const char *>(img.get_pixels());
        unsigned face_size = img.get_stride()*size;
        for(unsigned i=0; i<6; ++i)
-               image(enumerate_faces(i), 0, cdata+i*face_size);
+               image(enumerate_faces(i), 0, pixels+i*face_size);
 }
 
 unsigned TextureCube::get_n_levels() const