summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx
index 56f7e7afe..2e85f3f8d 100644
--- a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx
+++ b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx
@@ -28,13 +28,9 @@
void Fl_Quartz_Graphics_Driver::end_points() {
- if (quartz_line_width_ > 1.5f) CGContextSetShouldAntialias(gc_, true);
- for (int i=0; i<n; i++) {
- CGContextMoveToPoint(gc_, p[i].x, p[i].y);
- CGContextAddLineToPoint(gc_, p[i].x, p[i].y);
- CGContextStrokePath(gc_);
+ for (int i = 0; i < n; i++) {
+ point(p[i].x, p[i].y);
}
- if (quartz_line_width_ > 1.5f) CGContextSetShouldAntialias(gc_, false);
}
void Fl_Quartz_Graphics_Driver::end_line() {