diff options
author | junov@google.com <junov@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-01-18 18:56:34 +0000 |
---|---|---|
committer | junov@google.com <junov@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-01-18 18:56:34 +0000 |
commit | 77e498e6ba5603b64988c3243ee97b6165147298 (patch) | |
tree | 23423e6b7f7aa2b7ce3a777c1b98da8b1290460f | |
parent | f4b07328df74863a57aac67a947fc558335b340b (diff) |
Updating gm's usage message
git-svn-id: http://skia.googlecode.com/svn/trunk@3065 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | gm/gmmain.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gm/gmmain.cpp b/gm/gmmain.cpp index 878b6868c9..1e0c5b5873 100644 --- a/gm/gmmain.cpp +++ b/gm/gmmain.cpp @@ -586,16 +586,25 @@ static ErrorBitfield test_picture_serialization(GM* gm, } static void usage(const char * argv0) { - SkDebugf("%s [-w writePath] [-r readPath] [-d diffPath]\n", argv0); - SkDebugf(" [--replay] [--serialize]\n"); + SkDebugf( + "%s [-w writePath] [-r readPath] [-d diffPath] [--noreplay]\n" + " [--serialize] [--forceBWtext] [--nopdf] [--nodeferred]\n" + " [--match substring]" +#if SK_MESA + " [--mesagl]" +#endif + "\n\n", argv0); SkDebugf(" writePath: directory to write rendered images in.\n"); SkDebugf( " readPath: directory to read reference images from;\n" " reports if any pixels mismatch between reference and new images\n"); SkDebugf(" diffPath: directory to write difference images in.\n"); - SkDebugf(" --replay: exercise SkPicture replay.\n"); + SkDebugf(" --noreplay: do not exercise SkPicture replay.\n"); SkDebugf( " --serialize: exercise SkPicture serialization & deserialization.\n"); + SkDebugf(" --forceBWtext: disable text anti-aliasing.\n"); + SkDebugf(" --nopdf: skip the pdf rendering test pass.\n"); + SkDebugf(" --nodeferred: skip the deferred rendering test pass.\n"); SkDebugf(" --match foo will only run tests that substring match foo.\n"); #if SK_MESA SkDebugf(" --mesagl will run using the osmesa sw gl rasterizer.\n"); |