aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLContext.cpp
diff options
context:
space:
mode:
authorGravatar egdaniel <egdaniel@google.com>2015-05-13 06:39:38 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-13 06:39:38 -0700
commit9770bdce776f45367c419b8dd82219eece26ca5c (patch)
treed7852d7ed58a24f3171de1e2cb9d1410eadbf89a /src/gpu/gl/GrGLContext.cpp
parent0c3f58773e475d581fa973a5d3a4636277160a29 (diff)
Remove workaround to for lower glsl support for qualcomm
Diffstat (limited to 'src/gpu/gl/GrGLContext.cpp')
-rw-r--r--src/gpu/gl/GrGLContext.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gpu/gl/GrGLContext.cpp b/src/gpu/gl/GrGLContext.cpp
index fc8b195fd3..537363493f 100644
--- a/src/gpu/gl/GrGLContext.cpp
+++ b/src/gpu/gl/GrGLContext.cpp
@@ -47,16 +47,6 @@ bool GrGLContextInfo::initialize(const GrGLInterface* interface) {
fVendor = GrGLGetVendor(interface);
- /*
- * Qualcomm drivers have a horrendous bug with some drivers. Though they claim to
- * support GLES 3.00, some perfectly valid GLSL300 shaders will only compile with
- * #version 100, and will fail to compile with #version 300 es. In the long term, we
- * need to lock this down to a specific driver version.
- */
- if (kQualcomm_GrGLVendor == fVendor) {
- fGLSLGeneration = k110_GrGLSLGeneration;
- }
-
fRenderer = GrGLGetRendererFromString(renderer);
fIsMesa = GrGLIsMesaFromVersionString(ver);