I tracked down the antigrain problem I reported for Windows.  It appears to be 
a 
Visual C++ optimization bug.  A work around is to replace the line_to_d method 
with:
    template<class Clip> 
    void rasterizer_scanline_aa<Clip>::line_to_d(double x, double y) 
    { 
        coord_type xx=conv_type::upscale(x);
        coord_type yy=conv_type::upscale(y);
        m_clipper.line_to(m_outline,xx,yy); 
        m_status = status_line_to;
    }

--Scott Thibault


 
____________________________________________________________________________________
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html 

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Wxart2d-users_dev mailing list
Wxart2d-users_dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxart2d-users_dev

Reply via email to