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 #include "GrGLNoOpInterface.h" | 8 #include "GrGLNoOpInterface.h" |
9 #include "SkMutex.h" | 9 #include "SkMutex.h" |
10 #include "SkString.h" | 10 #include "SkString.h" |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 | 387 |
388 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLflo
at* values) { | 388 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLflo
at* values) { |
389 } | 389 } |
390 | 390 |
391 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLflo
at* values) { | 391 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLflo
at* values) { |
392 } | 392 } |
393 | 393 |
394 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo
at* values) { | 394 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo
at* values) { |
395 } | 395 } |
396 | 396 |
| 397 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribIPointer(GrGLuint indx, |
| 398 GrGLint size, |
| 399 GrGLenum type, |
| 400 GrGLsizei stride, |
| 401 const GrGLvoid* ptr) { |
| 402 } |
| 403 |
397 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, | 404 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, |
398 GrGLint size, | 405 GrGLint size, |
399 GrGLenum type, | 406 GrGLenum type, |
400 GrGLboolean normalized, | 407 GrGLboolean normalized, |
401 GrGLsizei stride, | 408 GrGLsizei stride, |
402 const GrGLvoid* ptr) { | 409 const GrGLvoid* ptr) { |
403 } | 410 } |
404 | 411 |
405 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribDivisor(GrGLuint index, GrGLuint
divisor) { | 412 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribDivisor(GrGLuint index, GrGLuint
divisor) { |
406 } | 413 } |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 static int gUniLocation = 0; | 680 static int gUniLocation = 0; |
674 return ++gUniLocation; | 681 return ++gUniLocation; |
675 } | 682 } |
676 | 683 |
677 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { | 684 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { |
678 } | 685 } |
679 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { | 686 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { |
680 } | 687 } |
681 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { | 688 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { |
682 } | 689 } |
OLD | NEW |