[client] set default opengl:vsync=off

This makes it consistent with the EGL renderer.
This commit is contained in:
Tudor Brindus 2021-01-03 22:19:46 -05:00 committed by Geoffrey McRae
parent 012ac950ac
commit bc2f26b86d
2 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ Command line arguments will override any options loaded from the config files.
| Long | Short | Value | Description |
|------------------------------------------------------------------------------------|
| opengl:mipmap | | yes | Enable mipmapping |
| opengl:vsync | | yes | Enable vsync |
| opengl:vsync | | no | Enable vsync |
| opengl:preventBuffer | | yes | Prevent the driver from buffering frames |
| opengl:amdPinnedMem | | yes | Use GL_AMD_pinned_memory if it is available |
|------------------------------------------------------------------------------------|

View File

@ -62,7 +62,7 @@ static struct Option opengl_options[] =
.name = "vsync",
.description = "Enable vsync",
.type = OPTION_TYPE_BOOL,
.value.x_bool = true
.value.x_bool = false
},
{
.module = "opengl",