aboutsummaryrefslogtreecommitdiff
path: root/generic
diff options
context:
space:
mode:
authorLecoanet2005-09-12 13:19:13 +0000
committerLecoanet2005-09-12 13:19:13 +0000
commit60cc52cb4e359e9105b37cf2f51bdbafe15765ba (patch)
treec396dc92908b415711ad33a37bba6efff04016b0 /generic
parentec7f97d3d45f749bd2ad5a3cff2a4e8de417195a (diff)
downloadtkzinc-60cc52cb4e359e9105b37cf2f51bdbafe15765ba.zip
tkzinc-60cc52cb4e359e9105b37cf2f51bdbafe15765ba.tar.gz
tkzinc-60cc52cb4e359e9105b37cf2f51bdbafe15765ba.tar.bz2
tkzinc-60cc52cb4e359e9105b37cf2f51bdbafe15765ba.tar.xz
*** empty log message ***
Diffstat (limited to 'generic')
-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) {