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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix3fv(GrGLint location, | 259 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix3fv(GrGLint location, |
260 GrGLsizei count, | 260 GrGLsizei count, |
261 GrGLboolean transpose, | 261 GrGLboolean transpose, |
262 const GrGLfloat* value); | 262 const GrGLfloat* value); |
263 | 263 |
264 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix4fv(GrGLint location, | 264 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix4fv(GrGLint location, |
265 GrGLsizei count, | 265 GrGLsizei count, |
266 GrGLboolean transpose, | 266 GrGLboolean transpose, |
267 const GrGLfloat* value); | 267 const GrGLfloat* value); |
268 | 268 |
| 269 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib1f(GrGLuint indx, const GrGLfloa
t value); |
| 270 |
| 271 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLflo
at* values); |
| 272 |
| 273 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLflo
at* values); |
| 274 |
269 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo
at* values); | 275 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo
at* values); |
270 | 276 |
271 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, | 277 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, |
272 GrGLint size, | 278 GrGLint size, |
273 GrGLenum type, | 279 GrGLenum type, |
274 GrGLboolean normalized, | 280 GrGLboolean normalized, |
275 GrGLsizei stride, | 281 GrGLsizei stride, |
276 const GrGLvoid* ptr); | 282 const GrGLvoid* ptr); |
277 | 283 |
278 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLViewport(GrGLint x, | 284 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLViewport(GrGLint x, |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 GrGLenum pname, | 375 GrGLenum pname, |
370 GrGLint* params); | 376 GrGLint* params); |
371 | 377 |
372 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); | 378 GrGLint GR_GL_FUNCTION_TYPE noOpGLGetUniformLocation(GrGLuint program, const cha
r* name); |
373 | 379 |
374 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker); | 380 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker); |
375 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker); | 381 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker); |
376 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker(); | 382 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker(); |
377 | 383 |
378 #endif | 384 #endif |
OLD | NEW |