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

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

Issue 2743663006: Allow switching DirectCompositionSurfaceWin between drawing modes. (Closed)
Patch Set: rebase Created 3 years, 9 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 (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 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 #include "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h" 5 #include "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h"
6 6
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 #include "ui/gl/gl_version_info.h" 8 #include "ui/gl/gl_version_info.h"
9 9
10 namespace gpu { 10 namespace gpu {
(...skipping 3511 matching lines...) Expand 10 before | Expand all | Expand 10 after
3522 3522
3523 error::Error GLES2DecoderPassthroughImpl::DoSetDrawRectangleCHROMIUM( 3523 error::Error GLES2DecoderPassthroughImpl::DoSetDrawRectangleCHROMIUM(
3524 GLint x, 3524 GLint x,
3525 GLint y, 3525 GLint y,
3526 GLint width, 3526 GLint width,
3527 GLint height) { 3527 GLint height) {
3528 NOTIMPLEMENTED(); 3528 NOTIMPLEMENTED();
3529 return error::kNoError; 3529 return error::kNoError;
3530 } 3530 }
3531 3531
3532 error::Error GLES2DecoderPassthroughImpl::DoSetEnableDCLayersCHROMIUM(
3533 GLboolean enable) {
3534 NOTIMPLEMENTED();
3535 return error::kNoError;
3536 }
3537
3532 } // namespace gles2 3538 } // namespace gles2
3533 } // namespace gpu 3539 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698