1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 19:35:49 +00:00

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

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,