void start_vLib ( void   ) 

Start the Velocity Library.

Example: Draw a solid red line through the middle of the screen
 void main () // Main function
 {
  start_vLib ();

  // Load stuff, declare variables, etc.

  for(;;)
  {
    // I usually check for input and update stuff here.

    startDrawing ();

    // Drawing some stuff.

    endDrawing ( FLIP|SYNC );
  }

  // Unload stuff here

  stop_vLib ();
 }


Generated on Tue Mar 20 23:01:06 2007 for vLib by  doxygen 1.4.7