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

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

Issue 2456213002: WebVR: implement SetSurfaceHandleCHROMIUM extension for gvr_device.
Patch Set: Rebase, set dependency. Created 3 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
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 4130 matching lines...) Expand 10 before | Expand all | Expand 10 after
4141 GLint display_x = static_cast<GLint>(c.display_x); 4141 GLint display_x = static_cast<GLint>(c.display_x);
4142 GLint display_y = static_cast<GLint>(c.display_y); 4142 GLint display_y = static_cast<GLint>(c.display_y);
4143 error::Error error = DoOverlayPromotionHintCHROMIUM(texture, promotion_hint, 4143 error::Error error = DoOverlayPromotionHintCHROMIUM(texture, promotion_hint,
4144 display_x, display_y); 4144 display_x, display_y);
4145 if (error != error::kNoError) { 4145 if (error != error::kNoError) {
4146 return error; 4146 return error;
4147 } 4147 }
4148 return error::kNoError; 4148 return error::kNoError;
4149 } 4149 }
4150 4150
4151 error::Error GLES2DecoderPassthroughImpl::HandleSetSurfaceHandleCHROMIUM(
4152 uint32_t immediate_data_size,
4153 const volatile void* cmd_data) {
4154 const volatile gles2::cmds::SetSurfaceHandleCHROMIUM& c =
4155 *static_cast<const volatile gles2::cmds::SetSurfaceHandleCHROMIUM*>(
4156 cmd_data);
4157 GLint surfaceHandle = static_cast<GLint>(c.surfaceHandle);
4158 error::Error error = DoSetSurfaceHandleCHROMIUM(surfaceHandle);
4159 if (error != error::kNoError) {
4160 return error;
4161 }
4162 return error::kNoError;
4163 }
4164
4151 } // namespace gles2 4165 } // namespace gles2
4152 } // namespace gpu 4166 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc ('k') | gpu/command_buffer/service/service_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698