Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Unified Diff: tools/flags/SkCommonFlagsConfig.cpp

Issue 1834693002: Add test configs for nvpr with atlas text (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: only nvprdit for dm Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dm_flags.py ('k') | tools/nanobench_flags.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/flags/SkCommonFlagsConfig.cpp
diff --git a/tools/flags/SkCommonFlagsConfig.cpp b/tools/flags/SkCommonFlagsConfig.cpp
index 4d9351c15ffede3b367d5c84a6753fce8b1212d5..9e0fd60b39d91503d620d9de95144c4a4c5f4ac7 100644
--- a/tools/flags/SkCommonFlagsConfig.cpp
+++ b/tools/flags/SkCommonFlagsConfig.cpp
@@ -23,8 +23,8 @@ static const char defaultConfigs[] =
static const char configHelp[] =
"Options: 565 8888 debug gpu gpudebug gpudft gpunull "
- "msaa16 msaa4 gpuf16 gpusrgb nonrendering null nullgpu nvprmsaa16 nvprmsaa4 "
- "pdf pdf_poppler skp svg xps"
+ "msaa16 msaa4 gpuf16 gpusrgb nonrendering null nullgpu "
+ "nvpr16 nvpr4 nvprdit16 nvprdit4 pdf pdf_poppler skp svg xps"
#if SK_ANGLE
#ifdef SK_BUILD_FOR_WIN
" angle"
@@ -82,11 +82,13 @@ static const char configExtendedHelp[] =
"\t Use multisampling with N samples.\n"
"\n"
"Predefined configs:\n\n"
- "\tgpu \t= gpu()\n"
- "\tmsaa4 \t= gpu(samples=4)\n"
- "\tmsaa16 \t= gpu(samples=16)\n"
- "\tnvprmsaa4\t= gpu(nvpr=true,samples=4)\n"
- "\tnvprmsaa16\t= gpu(nvpr=true,samples=16)\n"
+ "\tgpu \t= gpu()\n"
+ "\tmsaa4 \t= gpu(samples=4)\n"
+ "\tmsaa16 \t= gpu(samples=16)\n"
+ "\tnvpr4 \t= gpu(nvpr=true,samples=4)\n"
+ "\tnvpr16 \t= gpu(nvpr=true,samples=16)\n"
+ "\tnvprdit4 \t= gpu(nvpr=true,samples=4,dit=true)\n"
+ "\tnvprdit16 \t= gpu(nvpr=true,samples=16,dit=true)\n"
"\tgpuf16 \t= gpu(color=f16)\n"
"\tgpusrgb \t= gpu(color=srgb)\n"
"\tgpudft \t= gpu(dit=true)\n"
@@ -120,8 +122,10 @@ static const struct {
{ "gpu", "gpu", "" },
{ "msaa4", "gpu", "samples=4" },
{ "msaa16", "gpu", "samples=16" },
- { "nvprmsaa4", "gpu", "nvpr=true,samples=4,dit=true" },
- { "nvprmsaa16", "gpu", "nvpr=true,samples=16,dit=true" },
+ { "nvpr4", "gpu", "nvpr=true,samples=4" },
+ { "nvpr16", "gpu", "nvpr=true,samples=16" },
+ { "nvprdit4", "gpu", "nvpr=true,samples=4,dit=true" },
+ { "nvprdit16", "gpu", "nvpr=true,samples=16,dit=true" },
{ "gpuf16", "gpu", "color=f16" },
{ "gpusrgb", "gpu", "color=srgb" },
{ "gpudft", "gpu", "dit=true" },
« no previous file with comments | « tools/dm_flags.py ('k') | tools/nanobench_flags.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698