| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file is auto-generated from | |
| 6 // gpu/command_buffer/build_gles2_cmd_buffer.py | |
| 7 // It's formatted by clang-format using chromium coding style: | |
| 8 // clang-format -i -style=chromium filename | |
| 9 // DO NOT EDIT! | |
| 10 | |
| 11 VISIT_GL_CALL(GenMailboxCHROMIUM, void, (GLbyte * mailbox), (mailbox)) | |
| 12 VISIT_GL_CALL(ProduceTextureCHROMIUM, | |
| 13 void, | |
| 14 (GLenum target, const GLbyte* mailbox), | |
| 15 (target, mailbox)) | |
| 16 VISIT_GL_CALL(ProduceTextureDirectCHROMIUM, | |
| 17 void, | |
| 18 (GLuint texture, GLenum target, const GLbyte* mailbox), | |
| 19 (texture, target, mailbox)) | |
| 20 VISIT_GL_CALL(ConsumeTextureCHROMIUM, | |
| 21 void, | |
| 22 (GLenum target, const GLbyte* mailbox), | |
| 23 (target, mailbox)) | |
| 24 VISIT_GL_CALL(CreateAndConsumeTextureCHROMIUM, | |
| 25 GLuint, | |
| 26 (GLenum target, const GLbyte* mailbox), | |
| 27 (target, mailbox)) | |
| OLD | NEW |