Lines Matching defs:config
67 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
71 "'matrix' or 'upright' in config.");
74 "Space-separated config/src/srcOptions/name quadruples to skip. "
76 "'--skip gpu skp _ _' will skip all SKPs drawn into the gpu config.\n"
235 static void done(const char* config, const char* src, const char* srcOptions, const char* name) {
236 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
267 static void start(const char* config, const char* src, const char* srcOptions, const char* name) {
268 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
403 gGold->add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
912 static void push_sink(const SkCommandLineConfig& config, Sink* s) {
930 info("Could not run %s: %s\n", config.getTag().c_str(), result.c_str());
936 ts.tag = config.getTag();
939 static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLineConfig* config) {
941 if (const SkCommandLineConfigGpu* gpuConfig = config->asConfigGpu()) {
944 info("WARNING: can not create GPU context for config '%s'. "
966 if (const SkCommandLineConfigGraphite *graphiteConfig = config->asConfigGraphite()) {
971 if (const SkCommandLineConfigSvg* svgConfig = config->asConfigSvg()) {
976 #define SINK(t, sink, ...) if (config->getBackend().equals(t)) return new sink(__VA_ARGS__)
1038 const SkCommandLineConfig& config = *configs[i];
1039 Sink* sink = create_sink(grCtxOptions, &config);
1041 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
1042 config.getTag().c_str());
1046 // The command line config already parsed out the via-style color space. Apply it here.
1047 sink->setColorSpace(config.refColorSpace());
1049 const SkTArray<SkString>& parts = config.getViaParts();
1054 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
1063 push_sink(config, sink);
1332 result.config = task.sink.tag;
1527 static constexpr char kConfigArg[] = "--config";