Hi,
How to use PgDraw… functions ?
Is any setup function before using PgDrawIRect() ?
I use PgCreateGC(), and still does not work.
what is setup sequence for drawing line, rect, etc on the screen ?
DrawRect() {
PgCreateGC();
PgSetFillColor(Pg_YELLOW);
PgDrawIRect(0, 0, 100, 100, Pg_DRAW_FILL);
}
simon