aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-05-02 12:16:49 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-02 12:16:49 -0700
commit6536ae590e3873694cb02cf25dab8001a71f269e (patch)
treef944fbf08bb46bf044c3e01fce22c270b3a3a45e /src/gpu/gl
parent0265707c191a31dfde08dd1cd7011c1fe5b8e643 (diff)
added GrMSAAPathRenderer
Diffstat (limited to 'src/gpu/gl')
-rw-r--r--src/gpu/gl/GrGLCaps.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp
index f3e494acb9..9b12ce69c5 100644
--- a/src/gpu/gl/GrGLCaps.cpp
+++ b/src/gpu/gl/GrGLCaps.cpp
@@ -535,7 +535,8 @@ void GrGLCaps::init(const GrContextOptions& contextOptions,
}
if (kGL_GrGLStandard == standard) {
- if (version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) {
+ if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
+ ctxInfo.vendor() != kIntel_GrGLVendor) {
fSampleShadingSupport = true;
}
} else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {