Home | History | Annotate | Download | only in gpu

Lines Matching defs:strike

94     GrTextStrike* strike = SkNEW_ARGS(GrTextStrike,
96 fCache.add(strike);
99 fHead->fPrev = strike;
102 fTail = strike;
104 strike->fPrev = NULL;
105 strike->fNext = fHead;
106 fHead = strike;
108 return strike;
126 void GrFontCache::purgeStrike(GrTextStrike* strike) {
127 fCache.remove(*(strike->fFontScalerKey));
128 this->detachStrikeFromList(strike);
129 delete strike;
142 GrTextStrike* strike = fHead;
144 while (strike) {
145 if (maskFormat != strike->fMaskFormat) {
146 strike = strike->fNext;
150 GrTextStrike* strikeToPurge = strike;
151 strike = strikeToPurge->fNext;
180 const GrTextStrike* strike = fHead;
181 while (strike) {
183 strike = strike->fNext;
188 strike = fTail;
189 while (strike) {
191 strike = strike->fPrev;
223 The text strike is specific to a given font/style/matrix setup, which is