[3.0] Update command-line string & comment for view mode 70/98270/2
authorYoonsang Lee <yslee111@gmail.com>
Wed, 16 Nov 2016 23:57:05 +0000 (08:57 +0900)
committerYoonsang Lee <ysang114.lee@samsung.com>
Thu, 17 Nov 2016 00:01:40 +0000 (16:01 -0800)
to make clearer code
- STEREO_HORZ -> STEREO_HORIZONTAL
- STEREO_VERT -> STEREO_VERTICAL

Change-Id: I8bbdb30030308d0d893256941b4dcf1f991816ae

adaptors/common/command-line-options.cpp
adaptors/common/command-line-options.h

index 921314a..fd4b293 100644 (file)
@@ -60,7 +60,7 @@ Argument EXPECTED_ARGS[] =
   { "width",       "Stage Width"             },
   { "height",      "Stage Height"            },
   { "dpi",         "Emulated DPI"            },
-  { "view",        "Stereocopic 3D view mode ([0]=MONO, 1=STEREO_HORZ, 2=STEREO_VERT, 3=STEREO_INTERLACED)" },
+  { "view",        "Stereocopic 3D view mode ([0]=MONO, 1=STEREO_HORIZONTAL, 2=STEREO_VERTICAL, 3=STEREO_INTERLACED)" },
   { "stereo-base", "Distance in millimeters between left/right cameras [65.0]" },
   { "help",        "Help"                    },
   { NULL,          NULL                      }
index 9067dc1..d87781e 100644 (file)
@@ -70,7 +70,7 @@ public: // Command line parsed values
   int noVSyncOnRender;  ///< If 1, then the user does not want VSync on Render
   int stageWidth;       ///< The width of the stage required.  0 if not set.
   int stageHeight;      ///< The height of the stage required.   0 if not set.
-  int viewMode;         ///< Stereocopic 3D view mode (0=MONO, 1=STEREO_HORZ, 2=STEREO_VERT, 3=STEREO_INTERLACED)
+  int viewMode;         ///< Stereocopic 3D view mode (0=MONO, 1=STEREO_HORIZONTAL, 2=STEREO_VERTICAL, 3=STEREO_INTERLACED)
   int stereoBase;       ///< The distance in millimeters between left/right cameras
   std::string stageDPI; ///< DPI stored as hxv, where h is horizontal DPI and v is vertical DPI
 };