This allows the WGL_SWAP_INTERVAL env var to override any application
calls to wglSwapIntervalEXT(). Useful for debugging, or to set the
interval to zero to effectively disable the swap interval.
Note: we also rename the previous instance of SVGA_SWAP_INTERVAL to
WGL_SWAP_INTERVAL since this is a WGL feature and not related to the
svga driver.
Reviewed-by: Charmaine Lee <charmainel@vmware.com>
stw_pixelformat_init();
/* env var override for WGL_EXT_swap_control, useful for testing/debugging */
- const char *s = os_get_option("SVGA_SWAP_INTERVAL");
+ const char *s = os_get_option("WGL_SWAP_INTERVAL");
if (s) {
stw_dev->swap_interval = atoi(s);
}
SetLastError(ERROR_INVALID_DATA);
return FALSE;
}
- if (stw_dev) {
+ if (stw_dev && !os_get_option("WGL_SWAP_INTERVAL")) {
stw_dev->swap_interval = interval;
}
return TRUE;