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

Side by Side Diff: mojo/public/platform/native/gles2/call_visitor_chromium_map_sub_autogen.h

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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(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))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698