aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-04-23 12:25:51 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-23 12:25:51 -0700
commit92888e71e07688ee8c2477745c2f426c1b1b122d (patch)
tree28574f0b4135de8dbe145354c4aeb7e663ed454d /src
parent3d9005c0286f2dff8f3db030c4c1ad19371deebd (diff)
Remove validation of blend barrier until Chrome can provide this function
BUG=chromium:480534 TBR=egdaniel@google.com Review URL: https://codereview.chromium.org/1101143002
Diffstat (limited to 'src')
-rw-r--r--src/gpu/gl/GrGLInterface.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpu/gl/GrGLInterface.cpp b/src/gpu/gl/GrGLInterface.cpp
index d134cd56c8..bc2600c90a 100644
--- a/src/gpu/gl/GrGLInterface.cpp
+++ b/src/gpu/gl/GrGLInterface.cpp
@@ -325,12 +325,15 @@ bool GrGLInterface::validate() const {
}
}
+// FIXME: Remove this once Chromium is updated to provide this function
+#if 0
if (fExtensions.has("GL_KHR_blend_equation_advanced") ||
fExtensions.has("GL_NV_blend_equation_advanced")) {
if (NULL == fFunctions.fBlendBarrier) {
RETURN_FALSE_INTERFACE
}
}
+#endif
if (fExtensions.has("GL_EXT_discard_framebuffer")) {
// FIXME: Remove this once Chromium is updated to provide this function