Cairo Win32 draws only some simple lines.

Roman Bednarek <[email protected]>
Newsgroups gmane.comp.lib.cairo
Message-ID <[email protected]>
Hello
    I am a new cairo user, and want to use it at the beginning on Windows
platform.
   Binaries which I found on GTK site version 1.10.2 are over a year old,
and use old msvcrt runtime, so I decided to compile current new version.
   The build was succesfull without problems, but my version does not work.

that code draws a line:
        cairo_set_source_rgb (cr, 0.0, 0.0, 1.0);
        cairo_set_line_width (cr, 10.0);
        cairo_move_to(cr, 100.0, 100.0);
        cairo_rel_line_to(cr, 0.0, 600.0);
        cairo_stroke (cr);

and this one does not:
        cairo_set_source_rgb (cr, 0.0, 0.0, 1.0);
        cairo_set_line_width (cr, 10.0);
        cairo_move_to(cr, 100.0, 100.0);
        cairo_rel_line_to(cr, 10.0, 600.0);
        cairo_stroke (cr);

it also does not draw a rectangle with alpha channel, cairo_status does
not return any error.
Both functions work with GTK binary.
    What can be wrong? How can I found out?

Thanks for any help

Roman Bednarek
-- 
cairo mailing list
[email protected]
http://lists.cairographics.org/mailman/listinfo/cairo
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.