| #ifndef RecordTestUtils_DEFINED |
| #define RecordTestUtils_DEFINED |
| // If the command we're reading is a U, set ptr to it, otherwise set it to NULL. |
| ReadAs() : ptr(NULL), type(SkRecords::Type(~0)) {} |
| void operator()(const U& r) { ptr = &r; type = U::kType; } |
| void operator()(const T&) { type = U::kType; } |
| // Assert that the ith command in record is of type T, and return it. |
| static const T* assert_type(skiatest::Reporter* r, const SkRecord& record, unsigned index) { |
| record.visit<void>(index, reader); |
| REPORTER_ASSERT(r, T::kType == reader.type); |
| REPORTER_ASSERT(r, SkToBool(reader.ptr)); |
| #endif//RecordTestUtils_DEFINED |