Searched defs:BitmapTester (Results 1 – 1 of 1) sorted by relevance
65 struct BitmapTester { struct76 bool operator()(const SkRecords::DrawPicture& op) { return op.picture->willPlayBackBitmaps(); } in operator ()()79 bool operator()(const T& r) { return CheckBitmap(r); } in operator ()()84 static SK_WHEN(HasMember_bitmap<T>, bool) CheckBitmap(const T&) { return true; } in SK_WHEN()88 static SK_WHEN(!HasMember_bitmap<T>, bool) CheckBitmap(const T& r) { return CheckPaint(r); } in CheckBitmap()92 static SK_WHEN(HasMember_paint<T>, bool) CheckPaint(const T& r) { in SK_WHEN()106 static SK_WHEN(!HasMember_paint<T>, bool) CheckPaint(const T&) { return false; } in CheckPaint()