Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2014 Google Inc. | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 #ifndef SkPictureContentInfo_DEFINED | |
| 9 #define SkPictureContentInfo_DEFINED | |
| 10 | |
| 11 class GrContext; | |
| 12 | |
| 13 class SkPictureContentInfo { | |
| 14 public: | |
| 15 SkPictureContentInfo() { this->reset(); } | |
| 16 SkPictureContentInfo(const SkPictureContentInfo& src) { this->set(src); } | |
| 17 | |
| 18 bool numOperations() const { return fNumOperations; } | |
| 19 bool hasText() const { return fNumTexts > 0; } | |
| 20 bool suitableForGpuRasterization(GrContext* context, const char **reason, | |
| 21 int sampleCount) const; | |
| 22 | |
| 23 void addOperation() { ++fNumOperations; } | |
| 24 | |
| 25 void onDrawPoints(size_t count, const SkPaint& paint); | |
| 26 void onDrawPath(const SkPath& path, const SkPaint& paint); | |
| 27 void onAddPaintPtr(const SkPaint* paint); | |
| 28 void onDrawText() { ++fNumTexts; } | |
| 29 | |
| 30 void set(const SkPictureContentInfo& src); | |
| 31 void reset(); | |
| 32 void swap(SkPictureContentInfo* other); | |
| 33 | |
| 34 private: | |
|
robertphillips
2014/08/04 14:31:24
// Raw count of operations in the picture ?
| |
| 35 int fNumOperations; | |
|
robertphillips
2014/08/04 14:31:24
// This includes all forms of drawText ?
| |
| 36 int fNumTexts; | |
| 37 | |
| 38 // This field is incremented every time a paint with a path effect is | |
| 39 // used (i.e., it is not a de-duplicated count) | |
| 40 int fNumPaintWithPathEffectUses; | |
| 41 // This field is incremented every time a paint with a path effect that is | |
| 42 // dashed, we are drawing a line, and we can use the gpu fast path | |
| 43 int fNumFastPathDashEffects; | |
| 44 // This field is incremented every time an anti-aliased drawPath call is | |
| 45 // issued with a concave path | |
| 46 int fNumAAConcavePaths; | |
| 47 // This field is incremented every time a drawPath call is | |
| 48 // issued for a hairline stroked concave path. | |
| 49 int fNumAAHairlineConcavePaths; | |
| 50 }; | |
| 51 | |
| 52 #endif | |
| OLD | NEW |