| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 212 |
| 213 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOp(GrGLenum fail, GrGLenum zfail, GrGL
enum zpass) { | 213 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOp(GrGLenum fail, GrGLenum zfail, GrGL
enum zpass) { |
| 214 } | 214 } |
| 215 | 215 |
| 216 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOpSeparate(GrGLenum face, | 216 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOpSeparate(GrGLenum face, |
| 217 GrGLenum fail, | 217 GrGLenum fail, |
| 218 GrGLenum zfail, | 218 GrGLenum zfail, |
| 219 GrGLenum zpass) { | 219 GrGLenum zpass) { |
| 220 } | 220 } |
| 221 | 221 |
| 222 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexGenf(GrGLenum, GrGLenum, float) { | |
| 223 } | |
| 224 | |
| 225 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexGenfv(GrGLenum, GrGLenum, const float*) { | |
| 226 } | |
| 227 | |
| 228 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexGeni(GrGLenum, GrGLenum, GrGLint) { | |
| 229 } | |
| 230 | |
| 231 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, | 222 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, |
| 232 GrGLint level, | 223 GrGLint level, |
| 233 GrGLint internalformat, | 224 GrGLint internalformat, |
| 234 GrGLsizei width, | 225 GrGLsizei width, |
| 235 GrGLsizei height, | 226 GrGLsizei height, |
| 236 GrGLint border, | 227 GrGLint border, |
| 237 GrGLenum format, | 228 GrGLenum format, |
| 238 GrGLenum type, | 229 GrGLenum type, |
| 239 const GrGLvoid* pixels) { | 230 const GrGLvoid* pixels) { |
| 240 } | 231 } |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 static int gUniLocation = 0; | 638 static int gUniLocation = 0; |
| 648 return ++gUniLocation; | 639 return ++gUniLocation; |
| 649 } | 640 } |
| 650 | 641 |
| 651 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { | 642 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { |
| 652 } | 643 } |
| 653 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { | 644 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { |
| 654 } | 645 } |
| 655 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { | 646 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { |
| 656 } | 647 } |
| OLD | NEW |