зеркало из https://github.com/mozilla/gecko-dev.git
Bug 545097 [webgl] crash [@strstr] [@nsGLPbufferGLX::Init] on Sun Ray client r=vladimir
This commit is contained in:
Родитель
b4156f2e01
Коммит
57a9696248
|
@ -159,13 +159,13 @@ nsGLPbufferGLX::Init(WebGLContext *priv)
|
|||
|
||||
// Make sure that everyone agrees that pbuffers are supported
|
||||
s = gGLXWrap.fQueryExtensionsString(mDisplay, DefaultScreen(mDisplay));
|
||||
if (strstr(s, "GLX_SGIX_pbuffer") == NULL) {
|
||||
if (!s || strstr(s, "GLX_SGIX_pbuffer") == NULL) {
|
||||
LogMessage("Canvas 3D: GLX_SGIX_pbuffer not supported");
|
||||
return PR_FALSE;
|
||||
}
|
||||
|
||||
s = gGLXWrap.fQueryServerString(mDisplay, DefaultScreen(mDisplay), GLX_EXTENSIONS);
|
||||
if (strstr(s, "GLX_SGIX_pbuffer") == NULL) {
|
||||
if (!s || strstr(s, "GLX_SGIX_pbuffer") == NULL) {
|
||||
LogMessage("Canvas 3D: GLX_SGIX_pbuffer not supported by server");
|
||||
return PR_FALSE;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче