| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 235 |
| 236 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOp(GrGLenum fail, GrGLenum zfail, GrGL
enum zpass) { | 236 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOp(GrGLenum fail, GrGLenum zfail, GrGL
enum zpass) { |
| 237 } | 237 } |
| 238 | 238 |
| 239 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOpSeparate(GrGLenum face, | 239 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOpSeparate(GrGLenum face, |
| 240 GrGLenum fail, | 240 GrGLenum fail, |
| 241 GrGLenum zfail, | 241 GrGLenum zfail, |
| 242 GrGLenum zpass) { | 242 GrGLenum zpass) { |
| 243 } | 243 } |
| 244 | 244 |
| 245 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexBuffer(GrGLenum target, |
| 246 GrGLint internalformat, |
| 247 GrGLuint buffer) { |
| 248 } |
| 249 |
| 245 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, | 250 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, |
| 246 GrGLint level, | 251 GrGLint level, |
| 247 GrGLint internalformat, | 252 GrGLint internalformat, |
| 248 GrGLsizei width, | 253 GrGLsizei width, |
| 249 GrGLsizei height, | 254 GrGLsizei height, |
| 250 GrGLint border, | 255 GrGLint border, |
| 251 GrGLenum format, | 256 GrGLenum format, |
| 252 GrGLenum type, | 257 GrGLenum type, |
| 253 const GrGLvoid* pixels) { | 258 const GrGLvoid* pixels) { |
| 254 } | 259 } |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 static int gUniLocation = 0; | 691 static int gUniLocation = 0; |
| 687 return ++gUniLocation; | 692 return ++gUniLocation; |
| 688 } | 693 } |
| 689 | 694 |
| 690 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { | 695 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { |
| 691 } | 696 } |
| 692 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { | 697 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { |
| 693 } | 698 } |
| 694 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { | 699 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { |
| 695 } | 700 } |
| OLD | NEW |