Home | History | Annotate | Download | only in dm

Lines Matching refs:Expectations

42 DEFINE_string2(expectations, r, "",
44 "If a file, compare generated images against JSON expectations at this path."
98 const DM::Expectations& expectations,
107 START("565", CpuGMTask, expectations, kRGB_565_SkColorType);
108 START("8888", CpuGMTask, expectations, kN32_SkColorType);
109 START("gpu", GpuGMTask, expectations, native, 0);
110 START("msaa4", GpuGMTask, expectations, native, 4);
111 START("msaa16", GpuGMTask, expectations, native, 16);
112 START("nvprmsaa4", GpuGMTask, expectations, nvpr, 4);
113 START("nvprmsaa16", GpuGMTask, expectations, nvpr, 16);
114 START("gpunull", GpuGMTask, expectations, null, 0);
115 START("gpudebug", GpuGMTask, expectations, debug, 0);
116 START("angle", GpuGMTask, expectations, angle, 0);
117 START("mesa", GpuGMTask, expectations, mesa, 0);
236 SkAutoTDelete<DM::Expectations> expectations(SkNEW(DM::NoExpectations));
243 expectations.reset(SkNEW_ARGS(DM::WriteTask::Expectations, (path)));
245 expectations.reset(SkNEW_ARGS(DM::JsonExpectations, (path)));
264 kick_off_gms(gms, configs, *expectations, &reporter, &tasks);