| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #include "gl/GrGLInterface.h" | 10 #include "gl/GrGLInterface.h" |
| (...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 976 functions->fBlitFramebuffer = noOpGLBlitFramebuffer; | 976 functions->fBlitFramebuffer = noOpGLBlitFramebuffer; |
| 977 functions->fResolveMultisampleFramebuffer = | 977 functions->fResolveMultisampleFramebuffer = |
| 978 noOpGLResolveMultisampleFramebuffer; | 978 noOpGLResolveMultisampleFramebuffer; |
| 979 functions->fMatrixLoadf = noOpGLMatrixLoadf; | 979 functions->fMatrixLoadf = noOpGLMatrixLoadf; |
| 980 functions->fMatrixLoadIdentity = noOpGLMatrixLoadIdentity; | 980 functions->fMatrixLoadIdentity = noOpGLMatrixLoadIdentity; |
| 981 | 981 |
| 982 functions->fBindFragDataLocationIndexed = | 982 functions->fBindFragDataLocationIndexed = |
| 983 noOpGLBindFragDataLocationIndexed; | 983 noOpGLBindFragDataLocationIndexed; |
| 984 | 984 |
| 985 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functio
ns->fGetStringi, | 985 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functio
ns->fGetStringi, |
| 986 functions->fGetIntegerv); | 986 functions->fGetIntegerv, nullptr, GR_EGL_NO_DISP
LAY); |
| 987 | 987 |
| 988 return interface; | 988 return interface; |
| 989 } | 989 } |
| OLD | NEW |