| 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(MapBufferSubDataCHROMIUM, | |
| 12 void*, | |
| 13 (GLuint target, GLintptr offset, GLsizeiptr size, GLenum access), | |
| 14 (target, offset, size, access)) | |
| 15 VISIT_GL_CALL(UnmapBufferSubDataCHROMIUM, void, (const void* mem), (mem)) | |
| 16 VISIT_GL_CALL( | |
| 17 MapTexSubImage2DCHROMIUM, | |
| 18 void*, | |
| 19 (GLenum target, | |
| 20 GLint level, | |
| 21 GLint xoffset, | |
| 22 GLint yoffset, | |
| 23 GLsizei width, | |
| 24 GLsizei height, | |
| 25 GLenum format, | |
| 26 GLenum type, | |
| 27 GLenum access), | |
| 28 (target, level, xoffset, yoffset, width, height, format, type, access)) | |
| 29 VISIT_GL_CALL(UnmapTexSubImage2DCHROMIUM, void, (const void* mem), (mem)) | |
| OLD | NEW |