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

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

Issue 2646243002: Use IDCompositionSurface to implement DirectCompositionSurfaceWin. (Closed)
Patch Set: rebase Created 3 years, 10 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 8
9 namespace gpu { 9 namespace gpu {
10 namespace gles2 { 10 namespace gles2 {
(...skipping 3309 matching lines...) Expand 10 before | Expand all | Expand 10 after
3320 3320
3321 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( 3321 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM(
3322 GLuint texture, 3322 GLuint texture,
3323 GLboolean promotion_hint, 3323 GLboolean promotion_hint,
3324 GLint display_x, 3324 GLint display_x,
3325 GLint display_y) { 3325 GLint display_y) {
3326 NOTIMPLEMENTED(); 3326 NOTIMPLEMENTED();
3327 return error::kNoError; 3327 return error::kNoError;
3328 } 3328 }
3329 3329
3330 error::Error GLES2DecoderPassthroughImpl::DoSetDrawRectangleCHROMIUM(
3331 GLint x,
3332 GLint y,
3333 GLint width,
3334 GLint height) {
3335 NOTIMPLEMENTED();
3336 return error::kNoError;
3337 }
3338
3330 } // namespace gles2 3339 } // namespace gles2
3331 } // namespace gpu 3340 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698