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

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc

Issue 2559523002: Send overlay promotion hints from to GLStreamTextureImage. (Closed)
Patch Set: reverted media Created 4 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 4112 matching lines...) Expand 10 before | Expand all | Expand 10 after
4123 GetImmediateDataAs<volatile const GLfloat*>(c, data_size, 4123 GetImmediateDataAs<volatile const GLfloat*>(c, data_size,
4124 immediate_data_size); 4124 immediate_data_size);
4125 error::Error error = DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( 4125 error::Error error = DoUniformMatrix4fvStreamTextureMatrixCHROMIUM(
4126 location, transpose, transform); 4126 location, transpose, transform);
4127 if (error != error::kNoError) { 4127 if (error != error::kNoError) {
4128 return error; 4128 return error;
4129 } 4129 }
4130 return error::kNoError; 4130 return error::kNoError;
4131 } 4131 }
4132 4132
4133 error::Error
4134 GLES2DecoderPassthroughImpl::HandleSendOverlayPromotionHintCHROMIUM(
4135 uint32_t immediate_data_size,
4136 const volatile void* cmd_data) {
4137 const volatile gles2::cmds::SendOverlayPromotionHintCHROMIUM& c =
4138 *static_cast<
4139 const volatile gles2::cmds::SendOverlayPromotionHintCHROMIUM*>(
4140 cmd_data);
4141 GLuint texture = c.texture;
4142 GLboolean promotion_hint = static_cast<GLboolean>(c.promotion_hint);
4143 GLint display_x = static_cast<GLint>(c.display_x);
4144 GLint display_y = static_cast<GLint>(c.display_y);
4145 error::Error error = DoSendOverlayPromotionHintCHROMIUM(
4146 texture, promotion_hint, display_x, display_y);
4147 if (error != error::kNoError) {
4148 return error;
4149 }
4150 return error::kNoError;
4151 }
4152
4133 } // namespace gles2 4153 } // namespace gles2
4134 } // namespace gpu 4154 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698