|
From: <ai...@us...> - 2008-12-27 20:17:31
|
Revision: 9231
http://plplot.svn.sourceforge.net/plplot/?rev=9231&view=rev
Author: airwin
Date: 2008-12-27 20:17:26 +0000 (Sat, 27 Dec 2008)
Log Message:
-----------
Historically for the cairo device drivers, the graphical antialiasing looked
bad for examples 08, 16, 20, and 30. Therefore, we turned off graphics AA
for these examples for our website. However, since Werner's filled_polygon
change to the cairo driver, graphics AA looks better (or at least is no
worse for the example 30 case) then if graphics AA is turned off. Therefore,
take the default (graphics AA turned on) for these examples just like all
other examples.
Modified Paths:
--------------
trunk/scripts/htdocs-gen_plot-examples.sh
Modified: trunk/scripts/htdocs-gen_plot-examples.sh
===================================================================
--- trunk/scripts/htdocs-gen_plot-examples.sh 2008-12-25 00:58:07 UTC (rev 9230)
+++ trunk/scripts/htdocs-gen_plot-examples.sh 2008-12-27 20:17:26 UTC (rev 9231)
@@ -81,12 +81,17 @@
# hack, x20c needs lena in the current directory
$CP examples/c/lena.pgm .
+# 14 and 17 skipped because these are interactive examples.
+# 31 skipped because the plot generated is blank.
for exe in 01 02 03 04 05 06 07 08 09 10 11 12 13 15 16 18 19 20 21 22 \
23 24 25 26 27 28 29 30; do
if test $exe = 08 -o $exe = 16 -o $exe = 20 -o $exe = 30; then
- # No cairo graphics AA (Yep, 1 turns it off).
- DRIVEROPT='-drvopt graphics_anti_aliasing=1'
+ # The default cairo graphics AA looks good for these examples now
+ # since Werner's filled_polygon change to the cairo driver so no need
+ # to explicitly turn graphics AA off any more with
+ # DRIVEROPT='-drvopt graphics_anti_aliasing=1'
+ DRIVEROPT=
else
if test $exe = 09 -o $exe = 21; then
# Text clipping.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|