From: <arj...@us...> - 2010-06-16 07:10:07
|
Revision: 11069 http://plplot.svn.sourceforge.net/plplot/?rev=11069&view=rev Author: arjenmarkus Date: 2010-06-16 07:10:00 +0000 (Wed, 16 Jun 2010) Log Message: ----------- Correct information about the capabilities of the wingcc driver - it does not in fact implement the clear escape. The stripchart example (x17) failed because of this. As there seems to be no simple way of clearing the window in the GDI library, leave it to the default method - drawing a filled rectangle. Modified Paths: -------------- trunk/drivers/wingcc.c Modified: trunk/drivers/wingcc.c =================================================================== --- trunk/drivers/wingcc.c 2010-06-08 01:58:52 UTC (rev 11068) +++ trunk/drivers/wingcc.c 2010-06-16 07:10:00 UTC (rev 11069) @@ -441,7 +441,7 @@ pls->graphx = GRAPHICS_MODE; /* No text mode for this driver (at least for now, might add a console window if I ever figure it out and have the inclination) */ pls->dev_fill0 = 1; /* driver can do solid area fills */ pls->dev_xor = 1; /* driver supports xor mode */ - pls->dev_clear = 1; /* driver supports clear */ + pls->dev_clear = 0; /* driver does not support clear - what is the proper API? */ pls->dev_dash = 0; /* driver can not do dashed lines (yet) */ pls->plbuf_write = 1; /* driver uses the buffer for redraws */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |