From 4c84742664e16d40adfcdcc81d39add07e398fb7 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 3 Apr 2015 13:34:13 +0000 Subject: [PATCH] Improved the doxygen comment for the new createImageWithOrientationConversion(..) function. git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14820 16af8721-9629-0410-8352-f15c8da7e697 --- include/osg/ImageUtils | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/ImageUtils b/include/osg/ImageUtils index 1ca7390bd..9acb7fca8 100644 --- a/include/osg/ImageUtils +++ b/include/osg/ImageUtils @@ -239,7 +239,7 @@ enum ColorSpaceOperation /** Convert the RGBA values in a Image based on a ColorSpaceOperation defined scheme.*/ extern OSG_EXPORT osg::Image* colorSpaceConversion(ColorSpaceOperation op, osg::Image* image, const osg::Vec4& colour); -/** Create a copy of an osg::Image. converting the origin to standard lower left OpenGL style origin .*/ +/** Create a copy of an osg::Image. converting the origin and orientation to standard lower left OpenGL style origin .*/ extern OSG_EXPORT osg::Image* createImageWithOrientationConversion(const osg::Image* srcImage, const osg::Vec3i& srcOrigin, const osg::Vec3i& srcRow, const osg::Vec3i& srcColumn, const osg::Vec3i& srcLayer); }