| 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 |
| 11 #include "gl/GrGLDefines.h" | 11 #include "gl/GrGLDefines.h" |
| 12 #include "gl/GrGLFunctions.h" | 12 #include "gl/GrGLTypes.h" |
| 13 | 13 |
| 14 // These are constants/functions that are common to the Null and Debug GL interf
ace implementations. | 14 // These are constants/functions that are common to the Null and Debug GL interf
ace implementations. |
| 15 | 15 |
| 16 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBindFragDataLocation(GrGLuint program, | 16 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBindFragDataLocation(GrGLuint program, |
| 17 GrGLuint colorNumber, | 17 GrGLuint colorNumber, |
| 18 const GrGLchar* name); | 18 const GrGLchar* name); |
| 19 | 19 |
| 20 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBlendColor(GrGLclampf red, | 20 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBlendColor(GrGLclampf red, |
| 21 GrGLclampf green, | 21 GrGLclampf green, |
| 22 GrGLclampf blue, | 22 GrGLclampf blue, |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 GrGLenum pname, | 390 GrGLenum pname, |
| 391 GrGLint* params); | 391 GrGLint* params); |
| 392 | 392 |
| 393 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); | 393 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); |
| 394 | 394 |
| 395 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker); | 395 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker); |
| 396 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker); | 396 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker); |
| 397 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker(); | 397 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker(); |
| 398 | 398 |
| 399 #endif | 399 #endif |
| OLD | NEW |