mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 60.0.3112.40
This commit is contained in:
15
patch/patches/libangle_735986.patch
Normal file
15
patch/patches/libangle_735986.patch
Normal file
@@ -0,0 +1,15 @@
|
||||
diff --git src/libANGLE/renderer/d3d/d3d11/Clear11.cpp src/libANGLE/renderer/d3d/d3d11/Clear11.cpp
|
||||
index 2b960fe..4755132 100644
|
||||
--- src/libANGLE/renderer/d3d/d3d11/Clear11.cpp
|
||||
+++ src/libANGLE/renderer/d3d/d3d11/Clear11.cpp
|
||||
@@ -370,8 +370,8 @@ gl::Error Clear11::clearFramebuffer(const ClearParameters &clearParams,
|
||||
{
|
||||
const gl::FramebufferAttachment &attachment = colorAttachments[colorAttachmentIndex];
|
||||
|
||||
- if (clearParams.clearColor[colorAttachmentIndex] && attachment.isAttached() &&
|
||||
- drawBufferStates[colorAttachmentIndex] != GL_NONE)
|
||||
+ if (!clearParams.clearColor[colorAttachmentIndex] || !attachment.isAttached() ||
|
||||
+ drawBufferStates[colorAttachmentIndex] == GL_NONE)
|
||||
{
|
||||
continue;
|
||||
}
|
Reference in New Issue
Block a user