| 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 "SkString.h" | 9 #include "SkString.h" |
| 10 #include "SkThread.h" | 10 #include "SkThread.h" |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 GrGLboolean transpose, | 360 GrGLboolean transpose, |
| 361 const GrGLfloat* value) { | 361 const GrGLfloat* value) { |
| 362 } | 362 } |
| 363 | 363 |
| 364 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix4fv(GrGLint location, | 364 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix4fv(GrGLint location, |
| 365 GrGLsizei count, | 365 GrGLsizei count, |
| 366 GrGLboolean transpose, | 366 GrGLboolean transpose, |
| 367 const GrGLfloat* value) { | 367 const GrGLfloat* value) { |
| 368 } | 368 } |
| 369 | 369 |
| 370 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib1f(GrGLuint indx, const GrGLfloa
t value) { |
| 371 } |
| 372 |
| 373 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLflo
at* values) { |
| 374 } |
| 375 |
| 376 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLflo
at* values) { |
| 377 } |
| 378 |
| 370 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo
at* values) { | 379 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo
at* values) { |
| 371 } | 380 } |
| 372 | 381 |
| 373 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, | 382 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, |
| 374 GrGLint size, | 383 GrGLint size, |
| 375 GrGLenum type, | 384 GrGLenum type, |
| 376 GrGLboolean normalized, | 385 GrGLboolean normalized, |
| 377 GrGLsizei stride, | 386 GrGLsizei stride, |
| 378 const GrGLvoid* ptr) { | 387 const GrGLvoid* ptr) { |
| 379 } | 388 } |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 static int gUniLocation = 0; | 655 static int gUniLocation = 0; |
| 647 return ++gUniLocation; | 656 return ++gUniLocation; |
| 648 } | 657 } |
| 649 | 658 |
| 650 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { | 659 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { |
| 651 } | 660 } |
| 652 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { | 661 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { |
| 653 } | 662 } |
| 654 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { | 663 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { |
| 655 } | 664 } |
| OLD | NEW |