| 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 | |
| 404 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, | 397 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, |
| 405 GrGLint size, | 398 GrGLint size, |
| 406 GrGLenum type, | 399 GrGLenum type, |
| 407 GrGLboolean normalized, | 400 GrGLboolean normalized, |
| 408 GrGLsizei stride, | 401 GrGLsizei stride, |
| 409 const GrGLvoid* ptr) { | 402 const GrGLvoid* ptr) { |
| 410 } | 403 } |
| 411 | 404 |
| 412 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribDivisor(GrGLuint index, GrGLuint
divisor) { | 405 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribDivisor(GrGLuint index, GrGLuint
divisor) { |
| 413 } | 406 } |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 static int gUniLocation = 0; | 673 static int gUniLocation = 0; |
| 681 return ++gUniLocation; | 674 return ++gUniLocation; |
| 682 } | 675 } |
| 683 | 676 |
| 684 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { | 677 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { |
| 685 } | 678 } |
| 686 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { | 679 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { |
| 687 } | 680 } |
| 688 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { | 681 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { |
| 689 } | 682 } |
| OLD | NEW |