|
osgEarth 2.1.1
|
Public Member Functions | |
| bool | operator() (const osg::Vec4f &src, osg::Vec4f &dest) |
Simple functor to copy pixels from one image to another.
Usage: PixelVisitor<CopyImage>().accept( fromImage, toImage );
Definition at line 330 of file ImageUtils.
| bool osgEarth::ImageUtils::CopyImage::operator() | ( | const osg::Vec4f & | src, |
| osg::Vec4f & | dest | ||
| ) | [inline] |
Definition at line 331 of file ImageUtils.
{
dest = src;
return true;
}
1.7.3