OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 GLint* data)); | 439 GLint* data)); |
440 MOCK_METHOD2(GetIntegerv, void(GLenum pname, GLint* params)); | 440 MOCK_METHOD2(GetIntegerv, void(GLenum pname, GLint* params)); |
441 MOCK_METHOD4(GetIntegervRobustANGLE, | 441 MOCK_METHOD4(GetIntegervRobustANGLE, |
442 void(GLenum pname, GLsizei bufSize, GLsizei* length, GLint* data)); | 442 void(GLenum pname, GLsizei bufSize, GLsizei* length, GLint* data)); |
443 MOCK_METHOD5(GetInternalformativ, | 443 MOCK_METHOD5(GetInternalformativ, |
444 void(GLenum target, | 444 void(GLenum target, |
445 GLenum internalformat, | 445 GLenum internalformat, |
446 GLenum pname, | 446 GLenum pname, |
447 GLsizei bufSize, | 447 GLsizei bufSize, |
448 GLint* params)); | 448 GLint* params)); |
| 449 MOCK_METHOD6(GetInternalformativRobustANGLE, |
| 450 void(GLenum target, |
| 451 GLenum internalformat, |
| 452 GLenum pname, |
| 453 GLsizei bufSize, |
| 454 GLsizei* length, |
| 455 GLint* params)); |
449 MOCK_METHOD5(GetMultisamplefvRobustANGLE, | 456 MOCK_METHOD5(GetMultisamplefvRobustANGLE, |
450 void(GLenum pname, | 457 void(GLenum pname, |
451 GLuint index, | 458 GLuint index, |
452 GLsizei bufSize, | 459 GLsizei bufSize, |
453 GLsizei* length, | 460 GLsizei* length, |
454 GLfloat* val)); | 461 GLfloat* val)); |
455 MOCK_METHOD5(GetnUniformfvRobustANGLE, | 462 MOCK_METHOD5(GetnUniformfvRobustANGLE, |
456 void(GLuint program, | 463 void(GLuint program, |
457 GLint location, | 464 GLint location, |
458 GLsizei bufSize, | 465 GLsizei bufSize, |
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1159 const void* ptr)); | 1166 const void* ptr)); |
1160 MOCK_METHOD6(VertexAttribPointer, | 1167 MOCK_METHOD6(VertexAttribPointer, |
1161 void(GLuint indx, | 1168 void(GLuint indx, |
1162 GLint size, | 1169 GLint size, |
1163 GLenum type, | 1170 GLenum type, |
1164 GLboolean normalized, | 1171 GLboolean normalized, |
1165 GLsizei stride, | 1172 GLsizei stride, |
1166 const void* ptr)); | 1173 const void* ptr)); |
1167 MOCK_METHOD4(Viewport, void(GLint x, GLint y, GLsizei width, GLsizei height)); | 1174 MOCK_METHOD4(Viewport, void(GLint x, GLint y, GLsizei width, GLsizei height)); |
1168 MOCK_METHOD3(WaitSync, GLenum(GLsync sync, GLbitfield flags, GLuint64 timeout)); | 1175 MOCK_METHOD3(WaitSync, GLenum(GLsync sync, GLbitfield flags, GLuint64 timeout)); |
OLD | NEW |