Home | History | Annotate | Download | only in core

Lines Matching refs:ctable

268         @param ctable   ColorTable (or null) that matches the specified pixels
270 void setPixels(void* p, SkColorTable* ctable = NULL);
301 @param ctable ColorTable (or null) to use with the pixels that will
306 bool allocPixels(SkColorTable* ctable = NULL) {
307 return this->allocPixels(NULL, ctable);
322 @param ctable ColorTable (or null) to use with the pixels that will
329 bool allocPixels(Allocator* allocator, SkColorTable* ctable);
746 explicit SkAutoLockColors(SkColorTable* ctable) {
747 fCTable = ctable;
748 fColors = ctable ? ctable->lockColors() : NULL;
761 /** Locks the table and returns is colors (assuming ctable is not null) and
764 const SkPMColor* lockColors(SkColorTable* ctable) {
768 fCTable = ctable;
769 fColors = ctable ? ctable->lockColors() : NULL;