| 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 // gpu/command_buffer/build_gles2_cmd_buffer.py | 6 // gpu/command_buffer/build_gles2_cmd_buffer.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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 y, | 218 y, |
| 219 width, | 219 width, |
| 220 height, | 220 height, |
| 221 unpack_flip_y, | 221 unpack_flip_y, |
| 222 unpack_premultiply_alpha, | 222 unpack_premultiply_alpha, |
| 223 unpack_unmultiply_alpha)) | 223 unpack_unmultiply_alpha)) |
| 224 VISIT_GL_CALL(CompressedCopyTextureCHROMIUM, | 224 VISIT_GL_CALL(CompressedCopyTextureCHROMIUM, |
| 225 void, | 225 void, |
| 226 (GLenum target, GLenum source_id, GLenum dest_id), | 226 (GLenum target, GLenum source_id, GLenum dest_id), |
| 227 (target, source_id, dest_id)) | 227 (target, source_id, dest_id)) |
| 228 VISIT_GL_CALL( | |
| 229 CompressedCopySubTextureCHROMIUM, | |
| 230 void, | |
| 231 (GLenum target, | |
| 232 GLenum source_id, | |
| 233 GLenum dest_id, | |
| 234 GLint xoffset, | |
| 235 GLint yoffset, | |
| 236 GLint x, | |
| 237 GLint y, | |
| 238 GLsizei width, | |
| 239 GLsizei height), | |
| 240 (target, source_id, dest_id, xoffset, yoffset, x, y, width, height)) | |
| 241 VISIT_GL_CALL(DrawArraysInstancedANGLE, | 228 VISIT_GL_CALL(DrawArraysInstancedANGLE, |
| 242 void, | 229 void, |
| 243 (GLenum mode, GLint first, GLsizei count, GLsizei primcount), | 230 (GLenum mode, GLint first, GLsizei count, GLsizei primcount), |
| 244 (mode, first, count, primcount)) | 231 (mode, first, count, primcount)) |
| 245 VISIT_GL_CALL(DrawElementsInstancedANGLE, | 232 VISIT_GL_CALL(DrawElementsInstancedANGLE, |
| 246 void, | 233 void, |
| 247 (GLenum mode, | 234 (GLenum mode, |
| 248 GLsizei count, | 235 GLsizei count, |
| 249 GLenum type, | 236 GLenum type, |
| 250 const void* indices, | 237 const void* indices, |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 (GLuint program, GLuint colorNumber, GLuint index, const char* name), | 573 (GLuint program, GLuint colorNumber, GLuint index, const char* name), |
| 587 (program, colorNumber, index, name)) | 574 (program, colorNumber, index, name)) |
| 588 VISIT_GL_CALL(BindFragDataLocationEXT, | 575 VISIT_GL_CALL(BindFragDataLocationEXT, |
| 589 void, | 576 void, |
| 590 (GLuint program, GLuint colorNumber, const char* name), | 577 (GLuint program, GLuint colorNumber, const char* name), |
| 591 (program, colorNumber, name)) | 578 (program, colorNumber, name)) |
| 592 VISIT_GL_CALL(GetFragDataIndexEXT, | 579 VISIT_GL_CALL(GetFragDataIndexEXT, |
| 593 GLint, | 580 GLint, |
| 594 (GLuint program, const char* name), | 581 (GLuint program, const char* name), |
| 595 (program, name)) | 582 (program, name)) |
| OLD | NEW |