From: <hba...@us...> - 2010-03-21 19:10:26
|
Revision: 10876 http://plplot.svn.sourceforge.net/plplot/?rev=10876&view=rev Author: hbabcock Date: 2010-03-21 19:10:20 +0000 (Sun, 21 Mar 2010) Log Message: ----------- Fix win_cairo call to rotate_cairo_surface. Modified Paths: -------------- trunk/drivers/cairo.c Modified: trunk/drivers/cairo.c =================================================================== --- trunk/drivers/cairo.c 2010-03-21 00:43:45 UTC (rev 10875) +++ trunk/drivers/cairo.c 2010-03-21 19:10:20 UTC (rev 10876) @@ -2958,7 +2958,7 @@ aStream->cairoContext = cairo_create( aStream->cairoSurface ); /* Invert the surface so that the graphs are drawn right side up. */ - rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, pls->ylength ); + rotate_cairo_surface( pls, 1.0, 0.0, 0.0, -1.0, 0.0, pls->ylength, FALSE ); /* Set graphics aliasing */ cairo_set_antialias( aStream->cairoContext, aStream->graphics_anti_aliasing ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |