| OLD | NEW |
| 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 #ifndef GrGLNoOpInterface_DEFINED | 8 #ifndef GrGLNoOpInterface_DEFINED |
| 9 #define GrGLNoOpInterface_DEFINED | 9 #define GrGLNoOpInterface_DEFINED |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCompressedTexImage2D(GrGLenum target, | 49 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCompressedTexImage2D(GrGLenum target, |
| 50 GrGLint level, | 50 GrGLint level, |
| 51 GrGLenum internalformat, | 51 GrGLenum internalformat, |
| 52 GrGLsizei width, | 52 GrGLsizei width, |
| 53 GrGLsizei height, | 53 GrGLsizei height, |
| 54 GrGLint border, | 54 GrGLint border, |
| 55 GrGLsizei imageSize, | 55 GrGLsizei imageSize, |
| 56 const GrGLvoid* data); | 56 const GrGLvoid* data); |
| 57 | 57 |
| 58 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCompressedTexSubImage2D(GrGLenum target, |
| 59 GrGLint level, |
| 60 GrGLint xoffset, |
| 61 GrGLint yoffset, |
| 62 GrGLsizei width, |
| 63 GrGLsizei height, |
| 64 GrGLenum format, |
| 65 GrGLsizei imageSize, |
| 66 const GrGLvoid* data)
; |
| 67 |
| 58 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCopyTexSubImage2D(GrGLenum target, | 68 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCopyTexSubImage2D(GrGLenum target, |
| 59 GrGLint level, | 69 GrGLint level, |
| 60 GrGLint xoffset, | 70 GrGLint xoffset, |
| 61 GrGLint yoffset, | 71 GrGLint yoffset, |
| 62 GrGLint x, | 72 GrGLint x, |
| 63 GrGLint y, | 73 GrGLint y, |
| 64 GrGLsizei width, | 74 GrGLsizei width, |
| 65 GrGLsizei height); | 75 GrGLsizei height); |
| 66 | 76 |
| 67 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCullFace(GrGLenum mode); | 77 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCullFace(GrGLenum mode); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 GrGLenum pname, | 369 GrGLenum pname, |
| 360 GrGLint* params); | 370 GrGLint* params); |
| 361 | 371 |
| 362 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); | 372 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); |
| 363 | 373 |
| 364 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker); | 374 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker); |
| 365 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker); | 375 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker); |
| 366 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker(); | 376 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker(); |
| 367 | 377 |
| 368 #endif | 378 #endif |
| OLD | NEW |