| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file is auto-generated from | 5 // This file is auto-generated from |
| 6 // ui/gl/generate_bindings.py | 6 // ui/gl/generate_bindings.py |
| 7 // It's formatted by clang-format using chromium coding style: | 7 // It's formatted by clang-format using chromium coding style: |
| 8 // clang-format -i -style=chromium filename | 8 // clang-format -i -style=chromium filename |
| 9 // DO NOT EDIT! | 9 // DO NOT EDIT! |
| 10 | 10 |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 MOCK_METHOD3(GetShaderiv, void(GLuint shader, GLenum pname, GLint* params)); | 369 MOCK_METHOD3(GetShaderiv, void(GLuint shader, GLenum pname, GLint* params)); |
| 370 MOCK_METHOD4(GetShaderPrecisionFormat, | 370 MOCK_METHOD4(GetShaderPrecisionFormat, |
| 371 void(GLenum shadertype, | 371 void(GLenum shadertype, |
| 372 GLenum precisiontype, | 372 GLenum precisiontype, |
| 373 GLint* range, | 373 GLint* range, |
| 374 GLint* precision)); | 374 GLint* precision)); |
| 375 MOCK_METHOD4( | 375 MOCK_METHOD4( |
| 376 GetShaderSource, | 376 GetShaderSource, |
| 377 void(GLuint shader, GLsizei bufsize, GLsizei* length, char* source)); | 377 void(GLuint shader, GLsizei bufsize, GLsizei* length, char* source)); |
| 378 MOCK_METHOD1(GetString, const GLubyte*(GLenum name)); | 378 MOCK_METHOD1(GetString, const GLubyte*(GLenum name)); |
| 379 MOCK_METHOD2(GetStringi, const GLubyte*(GLenum name, GLuint index)); |
| 379 MOCK_METHOD5(GetSynciv, | 380 MOCK_METHOD5(GetSynciv, |
| 380 void(GLsync sync, | 381 void(GLsync sync, |
| 381 GLenum pname, | 382 GLenum pname, |
| 382 GLsizei bufSize, | 383 GLsizei bufSize, |
| 383 GLsizei* length, | 384 GLsizei* length, |
| 384 GLint* values)); | 385 GLint* values)); |
| 385 MOCK_METHOD4(GetTexLevelParameterfv, | 386 MOCK_METHOD4(GetTexLevelParameterfv, |
| 386 void(GLenum target, GLint level, GLenum pname, GLfloat* params)); | 387 void(GLenum target, GLint level, GLenum pname, GLfloat* params)); |
| 387 MOCK_METHOD4(GetTexLevelParameteriv, | 388 MOCK_METHOD4(GetTexLevelParameteriv, |
| 388 void(GLenum target, GLint level, GLenum pname, GLint* params)); | 389 void(GLenum target, GLint level, GLenum pname, GLint* params)); |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 const void* ptr)); | 702 const void* ptr)); |
| 702 MOCK_METHOD6(VertexAttribPointer, | 703 MOCK_METHOD6(VertexAttribPointer, |
| 703 void(GLuint indx, | 704 void(GLuint indx, |
| 704 GLint size, | 705 GLint size, |
| 705 GLenum type, | 706 GLenum type, |
| 706 GLboolean normalized, | 707 GLboolean normalized, |
| 707 GLsizei stride, | 708 GLsizei stride, |
| 708 const void* ptr)); | 709 const void* ptr)); |
| 709 MOCK_METHOD4(Viewport, void(GLint x, GLint y, GLsizei width, GLsizei height)); | 710 MOCK_METHOD4(Viewport, void(GLint x, GLint y, GLsizei width, GLsizei height)); |
| 710 MOCK_METHOD3(WaitSync, GLenum(GLsync sync, GLbitfield flags, GLuint64 timeout)); | 711 MOCK_METHOD3(WaitSync, GLenum(GLsync sync, GLbitfield flags, GLuint64 timeout)); |
| OLD | NEW |