Home | History | Annotate | Download | only in tests

Lines Matching refs:isVolatile

115         bool isVolatile;
116 GrPath::ComputeKey(GrShape(path1, GrStyle::SimpleFill()), &key1, &isVolatile);
117 REPORTER_ASSERT(reporter, !isVolatile);
119 GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &key2, &isVolatile);
120 REPORTER_ASSERT(reporter, !isVolatile);
126 GrPath::ComputeKey(GrShape(path1, style), &key1, &isVolatile);
127 REPORTER_ASSERT(reporter, isVolatile);
134 GrPath::ComputeKey(GrShape(path2, GrStyle::SimpleFill()), &tempKey, &isVolatile);
149 GrPath::ComputeKey(GrShape(path3, style), &key3, &isVolatile);
150 REPORTER_ASSERT(reporter, !isVolatile);
152 GrPath::ComputeKey(GrShape(path4, style), &key4, &isVolatile);
153 REPORTER_ASSERT(reporter, !isVolatile);
160 GrPath::ComputeKey(GrShape(path3, style), &key1, &isVolatile);
161 REPORTER_ASSERT(reporter, isVolatile);