Searched refs:doLine (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java46 native void doLine(SurfaceData sData, float x1, float y1, float x2, float y2); method in class:CRenderer
57 surfaceData.doLine(this, sg2d, x1, y1, x2, y2);
606 void doLine(SurfaceData sData, float x1, float y1, float x2, float y2) { method in class:CRenderer.Tracer
608 super.doLine(sData, x1, y1, x2, y2);
H A DOSXSurfaceData.java905 public void doLine(CRenderer renderer, SunGraphics2D sg2d, float x1, float y1, float x2, float y2) { method in class:OSXSurfaceData
906 // System.err.println("-- doLine x1="+x1+" y1="+y1+" x2="+x2+" y2="+y2+" paint="+sg2d.paint);
908 renderer.doLine(this, x1, y1, x2, y2);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzRenderer.m88 //fprintf(stderr, "doLine start=(%f, %f), end=(%f, %f), linewidth:%f, offsetX:%f, offsetY:%f\n", x1, y1, x2, y2, CGContextGetLineWidth(cgRef), offsetX, offsetY);
110 QUARTZ_RENDERER_INLINE SDRenderType doLine(QuartzSDOps *qsdo, CGFloat x1, CGFloat y1, CGFloat x2, CGFloat y2)
112 PRINT(" doLine")
621 * Method: doLine
634 doLine(qsdo, x1, y1, x2, y2);

Completed in 48 milliseconds