зеркало из https://github.com/mozilla/gecko-dev.git
Bug 912196 - Handle alpha for webgl backbuffer copyTexImage reads. - r=kamidphish
This commit is contained in:
Родитель
4776c9f56a
Коммит
5d8c381367
|
@ -1100,7 +1100,7 @@ WebGLContext::ValidateCopyTexImage(GLenum format,
|
|||
MOZ_ASSERT(IsCopyFunc(func));
|
||||
|
||||
// Default framebuffer format
|
||||
GLenum fboFormat = bool(gl->GetPixelFormat().alpha > 0) ? LOCAL_GL_RGBA : LOCAL_GL_RGB;
|
||||
GLenum fboFormat = mOptions.alpha ? LOCAL_GL_RGBA : LOCAL_GL_RGB;
|
||||
|
||||
if (mBoundFramebuffer) {
|
||||
if (!mBoundFramebuffer->CheckAndInitializeAttachments()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче