Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(797)

Side by Side Diff: mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h

Issue 1185963002: Add some Mojo C thunks used by cc when turning on impl-side painting. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698