зеркало из https://github.com/mozilla/pjs.git
Bug 549747 - Add a null check for tex in WebGLContext::FramebufferTexture2D. r=vlad
This commit is contained in:
Родитель
2807a4cbc2
Коммит
3f09cdc2d1
|
@ -932,7 +932,7 @@ WebGLContext::FramebufferTexture2D(GLenum target,
|
|||
|
||||
MakeContextCurrent();
|
||||
|
||||
gl->fFramebufferTexture2D(target, attachment, textarget, tex->GLName(), level);
|
||||
gl->fFramebufferTexture2D(target, attachment, textarget, tex ? tex->GLName() : 0, level);
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче