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

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: fiddled with GLboolean for windows compiler 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
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc ('k') | no next file » | 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 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 GLES2DecoderPassthroughImpl::HandleOverlayPromotionHintCHROMIUM(
4134 uint32_t immediate_data_size,
4135 const volatile void* cmd_data) {
4136 const volatile gles2::cmds::OverlayPromotionHintCHROMIUM& c =
4137 *static_cast<const volatile gles2::cmds::OverlayPromotionHintCHROMIUM*>(
4138 cmd_data);
4139 GLuint texture = c.texture;
4140 GLboolean promotion_hint = static_cast<GLboolean>(c.promotion_hint);
4141 GLint display_x = static_cast<GLint>(c.display_x);
4142 GLint display_y = static_cast<GLint>(c.display_y);
4143 error::Error error = DoOverlayPromotionHintCHROMIUM(texture, promotion_hint,
4144 display_x, display_y);
4145 if (error != error::kNoError) {
4146 return error;
4147 }
4148 return error::kNoError;
4149 }
4150
4133 } // namespace gles2 4151 } // namespace gles2
4134 } // namespace gpu 4152 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698