| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLReadBuffer(GrGLenum src); | 97 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLReadBuffer(GrGLenum src); |
| 98 | 98 |
| 99 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLScissor(GrGLint x, | 99 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLScissor(GrGLint x, |
| 100 GrGLint y, | 100 GrGLint y, |
| 101 GrGLsizei width, | 101 GrGLsizei width, |
| 102 GrGLsizei height); | 102 GrGLsizei height); |
| 103 | 103 |
| 104 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLShaderSource(GrGLuint shader, | 104 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLShaderSource(GrGLuint shader, |
| 105 GrGLsizei count, | 105 GrGLsizei count, |
| 106 #if GR_USE_NEW_GL_SHADER_SOURCE_SIGNATURE | 106 #if GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE |
| 107 const char* const * str, | 107 const char* const * str, |
| 108 #else | 108 #else |
| 109 const char** str, | 109 const char** str, |
| 110 #endif | 110 #endif |
| 111 const GrGLint* length); | 111 const GrGLint* length); |
| 112 | 112 |
| 113 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilFunc(GrGLenum func, GrGLint ref, GrGLu
int mask); | 113 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilFunc(GrGLenum func, GrGLint ref, GrGLu
int mask); |
| 114 | 114 |
| 115 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilFuncSeparate(GrGLenum face, | 115 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilFuncSeparate(GrGLenum face, |
| 116 GrGLenum func, | 116 GrGLenum func, |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 const GrGLubyte* GR_GL_FUNCTION_TYPE noOpGLGetStringi(GrGLenum name, GrGLuint i)
; | 338 const GrGLubyte* GR_GL_FUNCTION_TYPE noOpGLGetStringi(GrGLenum name, GrGLuint i)
; |
| 339 | 339 |
| 340 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLGetTexLevelParameteriv(GrGLenum target, | 340 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLGetTexLevelParameteriv(GrGLenum target, |
| 341 GrGLint level, | 341 GrGLint level, |
| 342 GrGLenum pname, | 342 GrGLenum pname, |
| 343 GrGLint* params); | 343 GrGLint* params); |
| 344 | 344 |
| 345 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); | 345 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); |
| 346 | 346 |
| 347 #endif | 347 #endif |
| OLD | NEW |