HomeSort by relevance Sort by last modified time
    Searched refs:updateClipBounds (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/src/gpu/
GrPictureUtils.cpp 46 this->updateClipBounds(op);
83 template <typename T> void updateClipBounds(const T&) { /* most ops don't change the clip */ }
86 void updateClipBounds(const SkRecords::Restore& op) { fCurrentClipBounds = op.devBounds; }
87 void updateClipBounds(const SkRecords::ClipPath& op) { fCurrentClipBounds = op.devBounds; }
88 void updateClipBounds(const SkRecords::ClipRRect& op) { fCurrentClipBounds = op.devBounds; }
89 void updateClipBounds(const SkRecords::ClipRect& op) { fCurrentClipBounds = op.devBounds; }
90 void updateClipBounds(const SkRecords::ClipRegion& op) { fCurrentClipBounds = op.devBounds; }
91 void updateClipBounds(const SkRecords::SaveLayer& op) {
  /external/chromium_org/third_party/skia/src/core/
SkRecordDraw.cpp 169 this->updateClipBounds(op);
189 template <typename T> void updateClipBounds(const T&) {}
192 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
193 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
194 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
195 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
206 void updateClipBounds(const Restore& op) {
218 void updateClipBounds(const SaveLayer& op) {
533 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative

Completed in 133 milliseconds