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

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

Issue 1551143002: Remove the "target" argument from CopyTextureChromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error. Created 4 years, 11 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
« no previous file with comments | « mojo/gpu/mojo_gles2_impl_autogen.cc ('k') | ppapi/lib/gl/include/GLES2/gl2ext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 VISIT_GL_CALL(TexImageIOSurface2DCHROMIUM, 176 VISIT_GL_CALL(TexImageIOSurface2DCHROMIUM,
177 void, 177 void,
178 (GLenum target, 178 (GLenum target,
179 GLsizei width, 179 GLsizei width,
180 GLsizei height, 180 GLsizei height,
181 GLuint ioSurfaceId, 181 GLuint ioSurfaceId,
182 GLuint plane), 182 GLuint plane),
183 (target, width, height, ioSurfaceId, plane)) 183 (target, width, height, ioSurfaceId, plane))
184 VISIT_GL_CALL(CopyTextureCHROMIUM, 184 VISIT_GL_CALL(CopyTextureCHROMIUM,
185 void, 185 void,
186 (GLenum target, 186 (GLenum source_id,
187 GLenum source_id,
188 GLenum dest_id, 187 GLenum dest_id,
189 GLint internalformat, 188 GLint internalformat,
190 GLenum dest_type, 189 GLenum dest_type,
191 GLboolean unpack_flip_y, 190 GLboolean unpack_flip_y,
192 GLboolean unpack_premultiply_alpha, 191 GLboolean unpack_premultiply_alpha,
193 GLboolean unpack_unmultiply_alpha), 192 GLboolean unpack_unmultiply_alpha),
194 (target, 193 (source_id,
195 source_id,
196 dest_id, 194 dest_id,
197 internalformat, 195 internalformat,
198 dest_type, 196 dest_type,
199 unpack_flip_y, 197 unpack_flip_y,
200 unpack_premultiply_alpha, 198 unpack_premultiply_alpha,
201 unpack_unmultiply_alpha)) 199 unpack_unmultiply_alpha))
202 VISIT_GL_CALL(CopySubTextureCHROMIUM, 200 VISIT_GL_CALL(CopySubTextureCHROMIUM,
203 void, 201 void,
204 (GLenum target, 202 (GLenum source_id,
205 GLenum source_id,
206 GLenum dest_id, 203 GLenum dest_id,
207 GLint xoffset, 204 GLint xoffset,
208 GLint yoffset, 205 GLint yoffset,
209 GLint x, 206 GLint x,
210 GLint y, 207 GLint y,
211 GLsizei width, 208 GLsizei width,
212 GLsizei height, 209 GLsizei height,
213 GLboolean unpack_flip_y, 210 GLboolean unpack_flip_y,
214 GLboolean unpack_premultiply_alpha, 211 GLboolean unpack_premultiply_alpha,
215 GLboolean unpack_unmultiply_alpha), 212 GLboolean unpack_unmultiply_alpha),
216 (target, 213 (source_id,
217 source_id,
218 dest_id, 214 dest_id,
219 xoffset, 215 xoffset,
220 yoffset, 216 yoffset,
221 x, 217 x,
222 y, 218 y,
223 width, 219 width,
224 height, 220 height,
225 unpack_flip_y, 221 unpack_flip_y,
226 unpack_premultiply_alpha, 222 unpack_premultiply_alpha,
227 unpack_unmultiply_alpha)) 223 unpack_unmultiply_alpha))
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 (GLuint program, GLuint colorNumber, GLuint index, const char* name), 586 (GLuint program, GLuint colorNumber, GLuint index, const char* name),
591 (program, colorNumber, index, name)) 587 (program, colorNumber, index, name))
592 VISIT_GL_CALL(BindFragDataLocationEXT, 588 VISIT_GL_CALL(BindFragDataLocationEXT,
593 void, 589 void,
594 (GLuint program, GLuint colorNumber, const char* name), 590 (GLuint program, GLuint colorNumber, const char* name),
595 (program, colorNumber, name)) 591 (program, colorNumber, name))
596 VISIT_GL_CALL(GetFragDataIndexEXT, 592 VISIT_GL_CALL(GetFragDataIndexEXT,
597 GLint, 593 GLint,
598 (GLuint program, const char* name), 594 (GLuint program, const char* name),
599 (program, name)) 595 (program, name))
OLDNEW
« no previous file with comments | « mojo/gpu/mojo_gles2_impl_autogen.cc ('k') | ppapi/lib/gl/include/GLES2/gl2ext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698