Results 1 to 2 of 2

Thread: Vertical Synchronizing

  1. #1

    Vertical Synchronizing

    How can I switch off Vertical Synchronizing for OpenGL?

  2. #2

    Vertical Synchronizing

    you can use the extension WGL_EXT_swap_control

    this extension can be loaded if you get a copy of glext.pas somewhere. when the extension is loaded you just call

    wglSwapIntervalEXT(interval);

    if interval is 0 then vsyncing is disabled. if it's > 0 then framerate is bound to that interval

    i have no idea how to do it on a linux box though
    Peregrinus, expectavi pedes meos in cymbalis
    Nullus norvegicorum sole urinat

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •