Updating gm's usage message
git-svn-id: http://skia.googlecode.com/svn/trunk@3065 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
f4b07328df
commit
77e498e6ba
@ -586,16 +586,25 @@ static ErrorBitfield test_picture_serialization(GM* gm,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void usage(const char * argv0) {
|
static void usage(const char * argv0) {
|
||||||
SkDebugf("%s [-w writePath] [-r readPath] [-d diffPath]\n", argv0);
|
SkDebugf(
|
||||||
SkDebugf(" [--replay] [--serialize]\n");
|
"%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(" writePath: directory to write rendered images in.\n");
|
||||||
SkDebugf(
|
SkDebugf(
|
||||||
" readPath: directory to read reference images from;\n"
|
" readPath: directory to read reference images from;\n"
|
||||||
" reports if any pixels mismatch between reference and new images\n");
|
" reports if any pixels mismatch between reference and new images\n");
|
||||||
SkDebugf(" diffPath: directory to write difference images in.\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(
|
SkDebugf(
|
||||||
" --serialize: exercise SkPicture serialization & deserialization.\n");
|
" --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");
|
SkDebugf(" --match foo will only run tests that substring match foo.\n");
|
||||||
#if SK_MESA
|
#if SK_MESA
|
||||||
SkDebugf(" --mesagl will run using the osmesa sw gl rasterizer.\n");
|
SkDebugf(" --mesagl will run using the osmesa sw gl rasterizer.\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user