From 501b3241c6afd15071b3e71eac77b6375aab86bf Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 25 Sep 2007 17:02:22 +0000 Subject: [PATCH] Added --flip argument docs. --- examples/osgmovie/osgmovie.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/osgmovie/osgmovie.cpp b/examples/osgmovie/osgmovie.cpp index 0c9934a95..94831f7b0 100644 --- a/examples/osgmovie/osgmovie.cpp +++ b/examples/osgmovie/osgmovie.cpp @@ -323,8 +323,8 @@ int main(int argc, char** argv) arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information"); arguments.getApplicationUsage()->addCommandLineOption("--texture2D","Use Texture2D rather than TextureRectangle."); arguments.getApplicationUsage()->addCommandLineOption("--shader","Use shaders to post process the video."); - arguments.getApplicationUsage()->addCommandLineOption("--dome","Use full dome distortion correction."); - arguments.getApplicationUsage()->addCommandLineOption("--interactive","Use camera manipulator to allow movement around movie.."); + arguments.getApplicationUsage()->addCommandLineOption("--interactive","Use camera manipulator to allow movement around movie."); + arguments.getApplicationUsage()->addCommandLineOption("--flip","Flip the movie so top becomes bottom."); bool useTextureRectangle = true; bool useShader = false;