aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--generic/Draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/Draw.c b/generic/Draw.c
index 3c0a37c..b772f5c 100644
--- a/generic/Draw.c
+++ b/generic/Draw.c
@@ -1154,7 +1154,7 @@ ZnRenderPolyline(ZnWInfo *wi,
* of GL_SMOOTH_LINE_WIDTH_RANGE and GL_SMOOTH_POINT_SIZE_RANGE
* with a mix of anti-aliased lines and points. The curves that
* are thicker are drawn using regular polygons.
- * BUG: The joints are drawn only rounded.
+ * TODO: The joints are drawn only rounded.
* The caps can be either round or butt (but not projecting).
*/
thin = ((line_width <= ce->max_line_width) &&
@@ -1166,7 +1166,7 @@ ZnRenderPolyline(ZnWInfo *wi,
ZnSetLineStyle(wi, line_style);
glLineWidth((GLfloat) line_width);
/*
- * Do not use joints under this transparency value.
+ * Do not use AA under this transparency value.
*/
transparent = alpha < (65535 * 0.8);
if (thin && transparent) {