]> git.tdb.fi Git - libs/gl.git/commitdiff
Make Texture2D::image(Graphics::Image) public
authorMikko Rasa <tdb@tdb.fi>
Wed, 16 Jan 2013 16:49:56 +0000 (18:49 +0200)
committerMikko Rasa <tdb@tdb.fi>
Wed, 16 Jan 2013 16:49:56 +0000 (18:49 +0200)
source/texture2d.h

index 994c4efd7224c43605ec0f6097483124e809db35..485867dd14f48e3a7dce09b7a4d9600856f152a9 100644 (file)
@@ -62,10 +62,11 @@ public:
        the image must be compatible with the defined storage. */
        void load_image(const std::string &fn);
 
-private:
+       /** Uploads an image to the texture.  If storage has not been defined, it
+       will be set to match the image.  Otherwise the image must be compatible with
+       the defined storage. */
        void image(const Graphics::Image &);
 
-public:
        unsigned get_width() const { return width; }
        unsigned get_height() const { return height; }