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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 NULL == fFunctions.fUniform3fv || | 177 NULL == fFunctions.fUniform3fv || |
178 NULL == fFunctions.fUniform3iv || | 178 NULL == fFunctions.fUniform3iv || |
179 NULL == fFunctions.fUniform4f || | 179 NULL == fFunctions.fUniform4f || |
180 NULL == fFunctions.fUniform4i || | 180 NULL == fFunctions.fUniform4i || |
181 NULL == fFunctions.fUniform4fv || | 181 NULL == fFunctions.fUniform4fv || |
182 NULL == fFunctions.fUniform4iv || | 182 NULL == fFunctions.fUniform4iv || |
183 NULL == fFunctions.fUniformMatrix2fv || | 183 NULL == fFunctions.fUniformMatrix2fv || |
184 NULL == fFunctions.fUniformMatrix3fv || | 184 NULL == fFunctions.fUniformMatrix3fv || |
185 NULL == fFunctions.fUniformMatrix4fv || | 185 NULL == fFunctions.fUniformMatrix4fv || |
186 NULL == fFunctions.fUseProgram || | 186 NULL == fFunctions.fUseProgram || |
187 #if 0 | |
188 NULL == fFunctions.fVertexAttrib1f || | 187 NULL == fFunctions.fVertexAttrib1f || |
189 NULL == fFunctions.fVertexAttrib2fv || | 188 NULL == fFunctions.fVertexAttrib2fv || |
190 NULL == fFunctions.fVertexAttrib3fv || | 189 NULL == fFunctions.fVertexAttrib3fv || |
191 #endif | |
192 NULL == fFunctions.fVertexAttrib4fv || | 190 NULL == fFunctions.fVertexAttrib4fv || |
193 NULL == fFunctions.fVertexAttribPointer || | 191 NULL == fFunctions.fVertexAttribPointer || |
194 NULL == fFunctions.fViewport || | 192 NULL == fFunctions.fViewport || |
195 NULL == fFunctions.fBindFramebuffer || | 193 NULL == fFunctions.fBindFramebuffer || |
196 NULL == fFunctions.fBindRenderbuffer || | 194 NULL == fFunctions.fBindRenderbuffer || |
197 NULL == fFunctions.fCheckFramebufferStatus || | 195 NULL == fFunctions.fCheckFramebufferStatus || |
198 NULL == fFunctions.fDeleteFramebuffers || | 196 NULL == fFunctions.fDeleteFramebuffers || |
199 NULL == fFunctions.fDeleteRenderbuffers || | 197 NULL == fFunctions.fDeleteRenderbuffers || |
200 NULL == fFunctions.fFinish || | 198 NULL == fFunctions.fFinish || |
201 NULL == fFunctions.fFlush || | 199 NULL == fFunctions.fFlush || |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || | 500 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || |
503 NULL == fFunctions.fProgramPathFragmentInputGen || | 501 NULL == fFunctions.fProgramPathFragmentInputGen || |
504 NULL == fFunctions.fPathMemoryGlyphIndexArray) { | 502 NULL == fFunctions.fPathMemoryGlyphIndexArray) { |
505 RETURN_FALSE_INTERFACE | 503 RETURN_FALSE_INTERFACE |
506 } | 504 } |
507 } | 505 } |
508 } | 506 } |
509 | 507 |
510 return true; | 508 return true; |
511 } | 509 } |
OLD | NEW |