Lines Matching refs:verb
14 inline GrGLubyte verb_to_gl_path_cmd(SkPath::Verb verb) { in verb_to_gl_path_cmd() argument
30 SkASSERT(verb >= 0 && (size_t)verb < SK_ARRAY_COUNT(gTable)); in verb_to_gl_path_cmd()
31 return gTable[verb]; in verb_to_gl_path_cmd()
35 inline int num_coords(SkPath::Verb verb) { in num_coords() argument
51 SkASSERT(verb >= 0 && (size_t)verb < SK_ARRAY_COUNT(gTable)); in num_coords()
52 return gTable[verb]; in num_coords()
111 SkPath::Verb verb; in init_path_object_for_general_path() local
112 while ((verb = iter.next(points)) != SkPath::kDone_Verb) { in init_path_object_for_general_path()
113 pathCommands.push_back(verb_to_gl_path_cmd(verb)); in init_path_object_for_general_path()
116 switch (verb) { in init_path_object_for_general_path()
180 SkDEBUGCODE(numCoords += num_coords(verb)); in init_path_object_for_general_path()