Searched defs:lockColors (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkColorTable.h55 const SkPMColor* lockColors() { function in class:SkColorTable
61 * Balancing call to lockColors().
65 /** Similar to lockColors(), lock16BitCache() returns the array of
68 Also, unlike lockColors(), the returned array here cannot be modified.
H A DSkBitmap.h842 /** Initialize with no bitmap. Call lockColors(bitmap) to lock bitmap's
850 fColors = fCTable ? fCTable->lockColors() : NULL;
856 fColors = ctable ? ctable->lockColors() : NULL;
872 const SkPMColor* lockColors(SkColorTable* ctable) { function in class:SkAutoLockColors
877 fColors = ctable ? ctable->lockColors() : NULL;
881 const SkPMColor* lockColors(const SkBitmap& bm) { function in class:SkAutoLockColors
882 return this->lockColors(bm.getColorTable());
/external/skia/include/core/
H A DSkColorTable.h55 const SkPMColor* lockColors() { function in class:SkColorTable
61 * Balancing call to lockColors().
65 /** Similar to lockColors(), lock16BitCache() returns the array of
68 Also, unlike lockColors(), the returned array here cannot be modified.
H A DSkBitmap.h820 /** Initialize with no bitmap. Call lockColors(bitmap) to lock bitmap's
828 fColors = fCTable ? fCTable->lockColors() : NULL;
834 fColors = ctable ? ctable->lockColors() : NULL;
850 const SkPMColor* lockColors(SkColorTable* ctable) { function in class:SkAutoLockColors
855 fColors = ctable ? ctable->lockColors() : NULL;
859 const SkPMColor* lockColors(const SkBitmap& bm) { function in class:SkAutoLockColors
860 return this->lockColors(bm.getColorTable());

Completed in 1788 milliseconds