| 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 || |
| 189 NULL == fFunctions.fVertexAttrib2fv || |
| 190 NULL == fFunctions.fVertexAttrib3fv || |
| 191 #endif |
| 187 NULL == fFunctions.fVertexAttrib4fv || | 192 NULL == fFunctions.fVertexAttrib4fv || |
| 188 NULL == fFunctions.fVertexAttribPointer || | 193 NULL == fFunctions.fVertexAttribPointer || |
| 189 NULL == fFunctions.fViewport || | 194 NULL == fFunctions.fViewport || |
| 190 NULL == fFunctions.fBindFramebuffer || | 195 NULL == fFunctions.fBindFramebuffer || |
| 191 NULL == fFunctions.fBindRenderbuffer || | 196 NULL == fFunctions.fBindRenderbuffer || |
| 192 NULL == fFunctions.fCheckFramebufferStatus || | 197 NULL == fFunctions.fCheckFramebufferStatus || |
| 193 NULL == fFunctions.fDeleteFramebuffers || | 198 NULL == fFunctions.fDeleteFramebuffers || |
| 194 NULL == fFunctions.fDeleteRenderbuffers || | 199 NULL == fFunctions.fDeleteRenderbuffers || |
| 195 NULL == fFunctions.fFinish || | 200 NULL == fFunctions.fFinish || |
| 196 NULL == fFunctions.fFlush || | 201 NULL == fFunctions.fFlush || |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || | 493 NULL == fFunctions.fStencilThenCoverStrokePathInstanced || |
| 489 NULL == fFunctions.fProgramPathFragmentInputGen || | 494 NULL == fFunctions.fProgramPathFragmentInputGen || |
| 490 NULL == fFunctions.fPathMemoryGlyphIndexArray) { | 495 NULL == fFunctions.fPathMemoryGlyphIndexArray) { |
| 491 RETURN_FALSE_INTERFACE | 496 RETURN_FALSE_INTERFACE |
| 492 } | 497 } |
| 493 } | 498 } |
| 494 } | 499 } |
| 495 | 500 |
| 496 return true; | 501 return true; |
| 497 } | 502 } |
| OLD | NEW |