| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 GrGLint level, | 231 GrGLint level, |
| 232 GrGLint internalformat, | 232 GrGLint internalformat, |
| 233 GrGLsizei width, | 233 GrGLsizei width, |
| 234 GrGLsizei height, | 234 GrGLsizei height, |
| 235 GrGLint border, | 235 GrGLint border, |
| 236 GrGLenum format, | 236 GrGLenum format, |
| 237 GrGLenum type, | 237 GrGLenum type, |
| 238 const GrGLvoid* pixels) { | 238 const GrGLvoid* pixels) { |
| 239 } | 239 } |
| 240 | 240 |
| 241 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage3D(GrGLenum target, |
| 242 GrGLint level, |
| 243 GrGLint internalformat, |
| 244 GrGLsizei width, |
| 245 GrGLsizei height, |
| 246 GrGLsizei depth, |
| 247 GrGLint border, |
| 248 GrGLenum format, |
| 249 GrGLenum type, |
| 250 const GrGLvoid* pixels) { |
| 251 } |
| 252 |
| 241 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteri(GrGLenum target, | 253 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteri(GrGLenum target, |
| 242 GrGLenum pname, | 254 GrGLenum pname, |
| 243 GrGLint param) { | 255 GrGLint param) { |
| 244 } | 256 } |
| 245 | 257 |
| 246 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteriv(GrGLenum target, | 258 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteriv(GrGLenum target, |
| 247 GrGLenum pname, | 259 GrGLenum pname, |
| 248 const GrGLint* params) { | 260 const GrGLint* params) { |
| 249 } | 261 } |
| 250 | 262 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 264 GrGLint level, | 276 GrGLint level, |
| 265 GrGLint xoffset, | 277 GrGLint xoffset, |
| 266 GrGLint yoffset, | 278 GrGLint yoffset, |
| 267 GrGLsizei width, | 279 GrGLsizei width, |
| 268 GrGLsizei height, | 280 GrGLsizei height, |
| 269 GrGLenum format, | 281 GrGLenum format, |
| 270 GrGLenum type, | 282 GrGLenum type, |
| 271 const GrGLvoid* pixels) { | 283 const GrGLvoid* pixels) { |
| 272 } | 284 } |
| 273 | 285 |
| 286 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage3D(GrGLenum target, |
| 287 GrGLint level, |
| 288 GrGLint xoffset, |
| 289 GrGLint yoffset, |
| 290 GrGLint zoffset, |
| 291 GrGLsizei width, |
| 292 GrGLsizei height, |
| 293 GrGLsizei depth, |
| 294 GrGLenum format, |
| 295 GrGLenum type, |
| 296 const GrGLvoid* pixels) { |
| 297 } |
| 298 |
| 274 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0) { | 299 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0) { |
| 275 } | 300 } |
| 276 | 301 |
| 277 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0) { | 302 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0) { |
| 278 } | 303 } |
| 279 | 304 |
| 280 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1fv(GrGLint location, | 305 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1fv(GrGLint location, |
| 281 GrGLsizei count, | 306 GrGLsizei count, |
| 282 const GrGLfloat* v) { | 307 const GrGLfloat* v) { |
| 283 } | 308 } |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 static int gUniLocation = 0; | 671 static int gUniLocation = 0; |
| 647 return ++gUniLocation; | 672 return ++gUniLocation; |
| 648 } | 673 } |
| 649 | 674 |
| 650 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { | 675 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha
r* marker) { |
| 651 } | 676 } |
| 652 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { | 677 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha
r* marker) { |
| 653 } | 678 } |
| 654 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { | 679 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { |
| 655 } | 680 } |
| OLD | NEW |