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( |
| 12 CreateImageCHROMIUM, |
| 13 GLuint, |
| 14 (ClientBuffer buffer, GLsizei width, GLsizei height, GLenum internalformat), |
| 15 (buffer, width, height, internalformat)) |
| 16 VISIT_GL_CALL(DestroyImageCHROMIUM, void, (GLuint image_id), (image_id)) |
| 17 VISIT_GL_CALL( |
| 18 CreateGpuMemoryBufferImageCHROMIUM, |
| 19 GLuint, |
| 20 (GLsizei width, GLsizei height, GLenum internalformat, GLenum usage), |
| 21 (width, height, internalformat, usage)) |
| 22 VISIT_GL_CALL(BindTexImage2DCHROMIUM, |
| 23 void, |
| 24 (GLenum target, GLint imageId), |
| 25 (target, imageId)) |
| 26 VISIT_GL_CALL(ReleaseTexImage2DCHROMIUM, |
| 27 void, |
| 28 (GLenum target, GLint imageId), |
| 29 (target, imageId)) |
OLD | NEW |