Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: src/gpu/gl/GrGLContext.cpp

Issue 661603009: Revert of Support GLSL es 3.00 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/gl/GrGLCaps.cpp ('k') | src/gpu/gl/GrGLSL.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "GrGLContext.h" 8 #include "GrGLContext.h"
9 9
10 //////////////////////////////////////////////////////////////////////////////// 10 ////////////////////////////////////////////////////////////////////////////////
(...skipping 29 matching lines...) Expand all
40 if (GR_GL_INVALID_VER == fGLVersion) { 40 if (GR_GL_INVALID_VER == fGLVersion) {
41 return false; 41 return false;
42 } 42 }
43 43
44 if (!GrGetGLSLGeneration(interface, &fGLSLGeneration)) { 44 if (!GrGetGLSLGeneration(interface, &fGLSLGeneration)) {
45 return false; 45 return false;
46 } 46 }
47 47
48 fVendor = GrGLGetVendor(interface); 48 fVendor = GrGLGetVendor(interface);
49 49
50 /*
51 * Qualcomm drivers have a horrendous bug with some drivers. Though they claim to
52 * support GLES 3.00, some perfectly valid GLSL300 shaders will only compile with
53 * #version 100, and will fail to compile with #version 300 es. In the long term, we
54 * need to lock this down to a specific driver version.
55 */
56 if (kQualcomm_GrGLVendor == fVendor) {
57 fGLSLGeneration = k110_GrGLSLGeneration;
58 }
59
60 fRenderer = GrGLGetRendererFromString(renderer); 50 fRenderer = GrGLGetRendererFromString(renderer);
61 51
62 fIsMesa = GrGLIsMesaFromVersionString(ver); 52 fIsMesa = GrGLIsMesaFromVersionString(ver);
63 53
64 fIsChromium = GrGLIsChromiumFromRendererString(renderer); 54 fIsChromium = GrGLIsChromiumFromRendererString(renderer);
65 55
66 // This must occur before caps init. 56 // This must occur before caps init.
67 fInterface.reset(SkRef(interface)); 57 fInterface.reset(SkRef(interface));
68 58
69 return fGLCaps->init(*this, interface); 59 return fGLCaps->init(*this, interface);
70 } 60 }
71 } 61 }
72 return false; 62 return false;
73 } 63 }
74 64
75 bool GrGLContextInfo::isInitialized() const { return SkToBool(fInterface.get()); } 65 bool GrGLContextInfo::isInitialized() const { return SkToBool(fInterface.get()); }
76 66
77 void GrGLContextInfo::reset() { 67 void GrGLContextInfo::reset() {
78 fInterface.reset(NULL); 68 fInterface.reset(NULL);
79 fGLVersion = GR_GL_VER(0, 0); 69 fGLVersion = GR_GL_VER(0, 0);
80 fGLSLGeneration = static_cast<GrGLSLGeneration>(0); 70 fGLSLGeneration = static_cast<GrGLSLGeneration>(0);
81 fVendor = kOther_GrGLVendor; 71 fVendor = kOther_GrGLVendor;
82 fRenderer = kOther_GrGLRenderer; 72 fRenderer = kOther_GrGLRenderer;
83 fIsMesa = false; 73 fIsMesa = false;
84 fIsChromium = false; 74 fIsChromium = false;
85 fGLCaps->reset(); 75 fGLCaps->reset();
86 } 76 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLCaps.cpp ('k') | src/gpu/gl/GrGLSL.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698