vo_opengl: fix backend=x11 on Intel

"backend=x11" was resolved to x11_probe, which is unintentional.
This commit is contained in:
wm4 2015-12-02 14:19:17 +01:00
parent 9cb7646071
commit 03d311823d
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ const struct mpgl_driver mpgl_driver_x11 = {
};
const struct mpgl_driver mpgl_driver_x11_probe = {
.name = "x11",
.name = "x11probe",
.priv_size = sizeof(struct glx_context),
.init = glx_init_probe,
.reconfig = glx_reconfig,