Lines Matching refs:strokes
50 void DrawStrokes(const PRCStrokes *strokes, int sx, int sy);
59 PRCStrokes strokes; member
83 PRCStrokes strokes; in NitroMain() local
100 PRC_InitStrokes(&strokes, points, POINT_PER_INPUT_MAX); in NitroMain()
106 PRC_InitStrokes(&queue[i].strokes, queue[i].points, POINT_PER_INPUT_MAX); in NitroMain()
136 if (!PRC_IsFull(&strokes)) in NitroMain()
150 PRC_AppendPoint(&strokes, sample.x, sample.y); in NitroMain()
160 if (!PRC_IsFull(&strokes)) in NitroMain()
162 PRC_AppendPenUpMarker(&strokes); in NitroMain()
188 if (PRC_IsEmpty(&strokes)) in NitroMain()
199 (void)PRC_CopyStrokes(&strokes, &queue[queueTail].strokes); in NitroMain()
215 PRC_Clear(&strokes); in NitroMain()
247 DrawStrokes(&strokes, 0, 0); in NitroMain()
277 PRC_Clear(&strokes); in NitroMain()
487 void DrawStrokes(const PRCStrokes *strokes, int sx, int sy) in DrawStrokes() argument
495 point = strokes->points; in DrawStrokes()
496 for (iPoint = 0; iPoint < strokes->size; iPoint++, point++) in DrawStrokes()
696 if (PRC_InitInputPatternEx(&gInputPattern, gPatternBuffer, &obj->strokes, in RecognizePattern()