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

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

Issue 2849743002: Allow binding multiple textures to one DC Layer overlay. (Closed)
Patch Set: improve test Created 3 years, 7 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 3635 matching lines...) Expand 10 before | Expand all | Expand 10 after
3646 GLfloat opacity, 3646 GLfloat opacity,
3647 GLboolean is_clipped, 3647 GLboolean is_clipped,
3648 const GLfloat* clip_rect, 3648 const GLfloat* clip_rect,
3649 GLint z_order, 3649 GLint z_order,
3650 const GLfloat* transform) { 3650 const GLfloat* transform) {
3651 NOTIMPLEMENTED(); 3651 NOTIMPLEMENTED();
3652 return error::kNoError; 3652 return error::kNoError;
3653 } 3653 }
3654 3654
3655 error::Error GLES2DecoderPassthroughImpl::DoScheduleDCLayerCHROMIUM( 3655 error::Error GLES2DecoderPassthroughImpl::DoScheduleDCLayerCHROMIUM(
3656 GLuint contents_texture_id,
3657 const GLfloat* contents_rect, 3656 const GLfloat* contents_rect,
3658 GLuint background_color, 3657 GLuint background_color,
3659 GLuint edge_aa_mask, 3658 GLuint edge_aa_mask,
3660 const GLfloat* bounds_rect) { 3659 const GLfloat* bounds_rect) {
3661 NOTIMPLEMENTED(); 3660 NOTIMPLEMENTED();
3662 return error::kNoError; 3661 return error::kNoError;
3663 } 3662 }
3664 3663
3665 error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM() { 3664 error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM() {
3666 NOTIMPLEMENTED(); 3665 NOTIMPLEMENTED();
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
3970 GLint height) { 3969 GLint height) {
3971 NOTIMPLEMENTED(); 3970 NOTIMPLEMENTED();
3972 return error::kNoError; 3971 return error::kNoError;
3973 } 3972 }
3974 3973
3975 error::Error GLES2DecoderPassthroughImpl::DoSetEnableDCLayersCHROMIUM( 3974 error::Error GLES2DecoderPassthroughImpl::DoSetEnableDCLayersCHROMIUM(
3976 GLboolean enable) { 3975 GLboolean enable) {
3977 NOTIMPLEMENTED(); 3976 NOTIMPLEMENTED();
3978 return error::kNoError; 3977 return error::kNoError;
3979 } 3978 }
3979 error::Error GLES2DecoderPassthroughImpl::DoSetDCLayerTextureCHROMIUM(
3980 GLuint index,
3981 GLuint texture) {
3982 NOTIMPLEMENTED();
3983 return error::kNoError;
3984 }
3980 3985
3981 } // namespace gles2 3986 } // namespace gles2
3982 } // namespace gpu 3987 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698