From: <sm...@us...> - 2008-12-18 08:41:59
|
Revision: 9184 http://plplot.svn.sourceforge.net/plplot/?rev=9184&view=rev Author: smekal Date: 2008-12-18 08:41:56 +0000 (Thu, 18 Dec 2008) Log Message: ----------- Add the wxpng device. Modified Paths: -------------- trunk/config.h.cmake trunk/include/drivers.h trunk/include/plDevs.h.cmake trunk/include/plcore.h Modified: trunk/config.h.cmake =================================================================== --- trunk/config.h.cmake 2008-12-18 08:38:53 UTC (rev 9183) +++ trunk/config.h.cmake 2008-12-18 08:41:56 UTC (rev 9184) @@ -305,6 +305,9 @@ /* Define if wxwidgets driver is present */ #cmakedefine PLD_wxwidgets +/* Define if wxwidgets png driver is present */ +#cmakedefine PLD_wxpng + /* Define if the cairo X windows driver is present */ #cmakedefine PLD_xcairo Modified: trunk/include/drivers.h =================================================================== --- trunk/include/drivers.h 2008-12-18 08:38:53 UTC (rev 9183) +++ trunk/include/drivers.h 2008-12-18 08:41:56 UTC (rev 9184) @@ -87,6 +87,7 @@ PLDLLIMPEXP_DRIVER void plD_dispatch_init_mem ( PLDispatchTable *pdt ); PLDLLIMPEXP_DRIVER void plD_dispatch_init_wingcc ( PLDispatchTable *pdt ); PLDLLIMPEXP_DRIVER void plD_dispatch_init_wxwidgets ( PLDispatchTable *pdt ); +PLDLLIMPEXP_DRIVER void plD_dispatch_init_wxpng ( PLDispatchTable *pdt ); PLDLLIMPEXP_DRIVER void plD_dispatch_init_svg ( PLDispatchTable *pdt ); PLDLLIMPEXP_DRIVER void plD_dispatch_init_pdf ( PLDispatchTable *pdt ); PLDLLIMPEXP_DRIVER void plD_dispatch_init_xcairo ( PLDispatchTable *pdt ); Modified: trunk/include/plDevs.h.cmake =================================================================== --- trunk/include/plDevs.h.cmake 2008-12-18 08:38:53 UTC (rev 9183) +++ trunk/include/plDevs.h.cmake 2008-12-18 08:41:56 UTC (rev 9184) @@ -75,6 +75,7 @@ #cmakedefine PLD_mem #cmakedefine PLD_wingcc #cmakedefine PLD_wxwidgets +#cmakedefine PLD_wxpng #cmakedefine PLD_svg #cmakedefine PLD_pdf #cmakedefine PLD_xcairo Modified: trunk/include/plcore.h =================================================================== --- trunk/include/plcore.h 2008-12-18 08:38:53 UTC (rev 9183) +++ trunk/include/plcore.h 2008-12-18 08:41:56 UTC (rev 9184) @@ -262,6 +262,9 @@ #if defined(PLD_wxwidgets) && !defined(ENABLE_DYNDRIVERS) plD_dispatch_init_wxwidgets, #endif +#if defined(PLD_wxpng) && !defined(ENABLE_DYNDRIVERS) + plD_dispatch_init_wxpng, +#endif #if defined(PLD_svg) && !defined(ENABLE_DYNDRIVERS) plD_dispatch_init_svg, #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |