Home | History | Annotate | Download | only in dm

Lines Matching defs:config

59             "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
63 "'matrix' or 'upright' in config.");
67 "Space-separated config/src/srcOptions/name quadruples to blacklist. '_' matches anything. E.g. \n"
68 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
142 static void done(const char* config, const char* src, const char* srcOptions, const char* name) {
143 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
163 static void start(const char* config, const char* src, const char* srcOptions, const char* name) {
164 SkString id = SkStringPrintf("%s %s %s %s", config, src, srcOptions, name);
301 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
812 static void push_sink(const SkCommandLineConfig& config, Sink* s) {
830 info("Could not run %s: %s\n", config.getTag().c_str(), err.c_str());
836 ts.tag = config.getTag();
847 static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLineConfig* config) {
850 if (const SkCommandLineConfigGpu* gpuConfig = config->asConfigGpu()) {
855 info("WARNING: can not create GPU context for config '%s'. "
866 #define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink(__VA_ARGS__); }
947 const SkCommandLineConfig& config = *configs[i];
948 Sink* sink = create_sink(grCtxOptions, &config);
950 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
951 config.getTag().c_str());
955 const SkTArray<SkString>& parts = config.getViaParts();
960 info("Skipping config %s: Don't understand '%s'.\n", config.getTag().c_str(),
969 push_sink(config, sink);
1176 result.config = task.sink.tag;