I am trying to draw a very long line with a Path. The line is correctly displayed up until to a x target value of 2036.
when i call path.lineTo(2037, y) the entire path is is not drawn. The call to canvas.drawPath(path, paint) does nothing.
Is there a problem i am not aware of?
On a second note... when i draw the same sequence of points via canvas.drawLines(float[], paint) the lines are correctly drawn but they are not antialiased. Is there a problem with antialiasing and drawLines?