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

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

Issue 1513283002: Add support to send optimal format as part of ScheduleOverlayPlane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 (sync_token)) 342 (sync_token))
343 VISIT_GL_CALL(DrawBuffersEXT, 343 VISIT_GL_CALL(DrawBuffersEXT,
344 void, 344 void,
345 (GLsizei count, const GLenum* bufs), 345 (GLsizei count, const GLenum* bufs),
346 (count, bufs)) 346 (count, bufs))
347 VISIT_GL_CALL(DiscardBackbufferCHROMIUM, void, (), ()) 347 VISIT_GL_CALL(DiscardBackbufferCHROMIUM, void, (), ())
348 VISIT_GL_CALL(ScheduleOverlayPlaneCHROMIUM, 348 VISIT_GL_CALL(ScheduleOverlayPlaneCHROMIUM,
349 void, 349 void,
350 (GLint plane_z_order, 350 (GLint plane_z_order,
351 GLenum plane_transform, 351 GLenum plane_transform,
352 GLuint storage_format,
352 GLuint overlay_texture_id, 353 GLuint overlay_texture_id,
353 GLint bounds_x, 354 GLint bounds_x,
354 GLint bounds_y, 355 GLint bounds_y,
355 GLint bounds_width, 356 GLint bounds_width,
356 GLint bounds_height, 357 GLint bounds_height,
357 GLfloat uv_x, 358 GLfloat uv_x,
358 GLfloat uv_y, 359 GLfloat uv_y,
359 GLfloat uv_width, 360 GLfloat uv_width,
360 GLfloat uv_height), 361 GLfloat uv_height,
362 GLboolean handle_scaling),
361 (plane_z_order, 363 (plane_z_order,
362 plane_transform, 364 plane_transform,
365 storage_format,
363 overlay_texture_id, 366 overlay_texture_id,
364 bounds_x, 367 bounds_x,
365 bounds_y, 368 bounds_y,
366 bounds_width, 369 bounds_width,
367 bounds_height, 370 bounds_height,
368 uv_x, 371 uv_x,
369 uv_y, 372 uv_y,
370 uv_width, 373 uv_width,
371 uv_height)) 374 uv_height,
375 handle_scaling))
372 VISIT_GL_CALL(ScheduleCALayerCHROMIUM, 376 VISIT_GL_CALL(ScheduleCALayerCHROMIUM,
373 void, 377 void,
374 (GLuint contents_texture_id, 378 (GLuint contents_texture_id,
375 const GLfloat* contents_rect, 379 const GLfloat* contents_rect,
376 GLfloat opacity, 380 GLfloat opacity,
377 const GLuint background_color, 381 const GLuint background_color,
378 const GLfloat* bounds_size, 382 const GLfloat* bounds_size,
379 const GLfloat* transform), 383 const GLfloat* transform),
380 (contents_texture_id, 384 (contents_texture_id,
381 contents_rect, 385 contents_rect,
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 (GLuint program, GLuint colorNumber, GLuint index, const char* name), 578 (GLuint program, GLuint colorNumber, GLuint index, const char* name),
575 (program, colorNumber, index, name)) 579 (program, colorNumber, index, name))
576 VISIT_GL_CALL(BindFragDataLocationEXT, 580 VISIT_GL_CALL(BindFragDataLocationEXT,
577 void, 581 void,
578 (GLuint program, GLuint colorNumber, const char* name), 582 (GLuint program, GLuint colorNumber, const char* name),
579 (program, colorNumber, name)) 583 (program, colorNumber, name))
580 VISIT_GL_CALL(GetFragDataIndexEXT, 584 VISIT_GL_CALL(GetFragDataIndexEXT,
581 GLint, 585 GLint,
582 (GLuint program, const char* name), 586 (GLuint program, const char* name),
583 (program, name)) 587 (program, name))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698