Bug 1329574 - try to create double-buffer for GLX gl context. r=jrmuizel?

Some FBConfigs do not have the double-buffer attribute. This patch adds one
more selection condition for the double-buffer.

MozReview-Commit-ID: 6QLpEXAi04X
This commit is contained in:
JerryShih 2017-01-13 20:02:20 +08:00
Родитель 00ecb7b7e6
Коммит 0d06f1859b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -1259,6 +1259,7 @@ GLContextGLX::FindFBConfigForWindow(Display* display, int screen, Window window,
} else {
const int webrenderAttribs[] = {
LOCAL_GLX_DEPTH_SIZE, 24,
LOCAL_GLX_DOUBLEBUFFER, True,
0
};