[Previous] [Contents] [Index] [Next]

PgWaitVSync()

Wait for vertical synchronization

Synopsis:

void PgWaitVSync( void );

Library:

ph

Description:

This function inserts a "wait for vertical sync" tag into the drawstream. The driver waits until a vertical refresh has started before continuing to render the draw stream.

This function is available only in direct mode.

Examples:

PgSetFillColor(Pg_RED);
PgWaitVSync();
PgDrawIRect(0,0,99,99,Pg_DRAW_FILL);
PgSetFillColor(Pg_BLACK);
PgDrawIRect(9,9,89,89,Pg_DRAW_FILL);
PgFlush();	// Wait for Vsync, then draw 2 rects

Classification:

Photon

Safety:
Interrupt handler No
Signal handler No
Thread No

See also:

PgWaitDrawComplete(), PgWaitHWIdle()

"Direct mode" in the Raw Drawing and Animation chapter of the Photon Programmer's Guide


[Previous] [Contents] [Index] [Next]