Lines Matching refs:point
370 u16 *point = VRAM_BASE_ADDR; in DrawLine() local
390 point += sy * VRAM_LINE_SIZE + sx; in DrawLine()
403 *point = col; // PutDot in DrawLine()
404 ++point; in DrawLine()
408 point += VRAM_LINE_SIZE; in DrawLine()
422 *point = col; // PutDot in DrawLine()
423 point += VRAM_LINE_SIZE; in DrawLine()
427 ++point; in DrawLine()
445 *point = col; // PutDot in DrawLine()
446 ++point; in DrawLine()
450 point -= VRAM_LINE_SIZE; in DrawLine()
464 *point = col; // PutDot in DrawLine()
465 point -= VRAM_LINE_SIZE; in DrawLine()
469 ++point; in DrawLine()
492 const PRCPoint *point; in DrawStrokes() local
495 point = strokes->points; in DrawStrokes()
496 for (iPoint = 0; iPoint < strokes->size; iPoint++, point++) in DrawStrokes()
498 if (!PRC_IsPenUpMarker(point)) in DrawStrokes()
502 PutDot(sx + point->x, sy + point->y, 1); in DrawStrokes()
506 DrawLine(sx + prev.x, sy + prev.y, sx + point->x, sy + point->y, 1); in DrawStrokes()
508 prev = *point; in DrawStrokes()