HomeSort by relevance Sort by last modified time
    Searched defs:lockColors (Results 1 - 3 of 3) sorted by null

  /external/skia/include/core/
SkColorTable.h 63 lockColors()/{set the values}/unlockColors(true).
72 SkPMColor* lockColors() {
76 /** Balancing call to lockColors(). If the colors have been changed, pass true.
80 /** Similar to lockColors(), lock16BitCache() returns the array of
83 Also, unlike lockColors(), the returned array here cannot be modified.
SkBitmap.h 713 /** Initialize with no bitmap. Call lockColors(bitmap) to lock bitmap's
721 fColors = fCTable ? fCTable->lockColors() : NULL;
727 fColors = ctable ? ctable->lockColors() : NULL;
743 const SkPMColor* lockColors(SkColorTable* ctable) {
748 fColors = ctable ? ctable->lockColors() : NULL;
752 const SkPMColor* lockColors(const SkBitmap& bm) {
753 return this->lockColors(bm.getColorTable());
  /external/skia/legacy/include/core/
SkBitmap.h 696 lockColors()/{set the values}/unlockColors(true).
705 SkPMColor* lockColors() {
709 /** Balancing call to lockColors(). If the colors have been changed, pass true.
713 /** Similar to lockColors(), lock16BitCache() returns the array of
716 Also, unlike lockColors(), the returned array here cannot be modified.
763 /** Initialize with no bitmap. Call lockColors(bitmap) to lock bitmap's
771 fColors = fCTable ? fCTable->lockColors() : NULL;
777 fColors = ctable ? ctable->lockColors() : NULL;
793 const SkPMColor* lockColors(SkColorTable* ctable) {
798 fColors = ctable ? ctable->lockColors() : NULL
    [all...]

Completed in 53 milliseconds