OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 | 8 |
9 #include "gl/GrGLInterface.h" | 9 #include "gl/GrGLInterface.h" |
10 #include "gl/GrGLExtensions.h" | 10 #include "gl/GrGLExtensions.h" |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 NULL == fFunctions.fLinkProgram || | 153 NULL == fFunctions.fLinkProgram || |
154 NULL == fFunctions.fLineWidth || | 154 NULL == fFunctions.fLineWidth || |
155 NULL == fFunctions.fPixelStorei || | 155 NULL == fFunctions.fPixelStorei || |
156 NULL == fFunctions.fReadPixels || | 156 NULL == fFunctions.fReadPixels || |
157 NULL == fFunctions.fScissor || | 157 NULL == fFunctions.fScissor || |
158 NULL == fFunctions.fShaderSource || | 158 NULL == fFunctions.fShaderSource || |
159 NULL == fFunctions.fStencilFunc || | 159 NULL == fFunctions.fStencilFunc || |
160 NULL == fFunctions.fStencilMask || | 160 NULL == fFunctions.fStencilMask || |
161 NULL == fFunctions.fStencilOp || | 161 NULL == fFunctions.fStencilOp || |
162 NULL == fFunctions.fTexImage2D || | 162 NULL == fFunctions.fTexImage2D || |
| 163 NULL == fFunctions.fTexImage3D || |
163 NULL == fFunctions.fTexParameteri || | 164 NULL == fFunctions.fTexParameteri || |
164 NULL == fFunctions.fTexParameteriv || | 165 NULL == fFunctions.fTexParameteriv || |
165 NULL == fFunctions.fTexSubImage2D || | 166 NULL == fFunctions.fTexSubImage2D || |
| 167 NULL == fFunctions.fTexSubImage3D || |
166 NULL == fFunctions.fUniform1f || | 168 NULL == fFunctions.fUniform1f || |
167 NULL == fFunctions.fUniform1i || | 169 NULL == fFunctions.fUniform1i || |
168 NULL == fFunctions.fUniform1fv || | 170 NULL == fFunctions.fUniform1fv || |
169 NULL == fFunctions.fUniform1iv || | 171 NULL == fFunctions.fUniform1iv || |
170 NULL == fFunctions.fUniform2f || | 172 NULL == fFunctions.fUniform2f || |
171 NULL == fFunctions.fUniform2i || | 173 NULL == fFunctions.fUniform2i || |
172 NULL == fFunctions.fUniform2fv || | 174 NULL == fFunctions.fUniform2fv || |
173 NULL == fFunctions.fUniform2iv || | 175 NULL == fFunctions.fUniform2iv || |
174 NULL == fFunctions.fUniform3f || | 176 NULL == fFunctions.fUniform3f || |
175 NULL == fFunctions.fUniform3i || | 177 NULL == fFunctions.fUniform3i || |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 NULL == fFunctions.fStencilThenCoverFillPathInstanced || | 488 NULL == fFunctions.fStencilThenCoverFillPathInstanced || |
487 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || | 489 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || |
488 NULL == fFunctions.fProgramPathFragmentInputGen) { | 490 NULL == fFunctions.fProgramPathFragmentInputGen) { |
489 RETURN_FALSE_INTERFACE | 491 RETURN_FALSE_INTERFACE |
490 } | 492 } |
491 } | 493 } |
492 } | 494 } |
493 | 495 |
494 return true; | 496 return true; |
495 } | 497 } |
OLD | NEW |