OLD | NEW |
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 Loading... |
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, | 3656 GLsizei num_textures, |
| 3657 const volatile GLuint* contents_texture_ids, |
3657 const GLfloat* contents_rect, | 3658 const GLfloat* contents_rect, |
3658 GLuint background_color, | 3659 GLuint background_color, |
3659 GLuint edge_aa_mask, | 3660 GLuint edge_aa_mask, |
3660 const GLfloat* bounds_rect) { | 3661 const GLfloat* bounds_rect) { |
3661 NOTIMPLEMENTED(); | 3662 NOTIMPLEMENTED(); |
3662 return error::kNoError; | 3663 return error::kNoError; |
3663 } | 3664 } |
3664 | 3665 |
3665 error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM() { | 3666 error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM() { |
3666 NOTIMPLEMENTED(); | 3667 NOTIMPLEMENTED(); |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3973 } | 3974 } |
3974 | 3975 |
3975 error::Error GLES2DecoderPassthroughImpl::DoSetEnableDCLayersCHROMIUM( | 3976 error::Error GLES2DecoderPassthroughImpl::DoSetEnableDCLayersCHROMIUM( |
3976 GLboolean enable) { | 3977 GLboolean enable) { |
3977 NOTIMPLEMENTED(); | 3978 NOTIMPLEMENTED(); |
3978 return error::kNoError; | 3979 return error::kNoError; |
3979 } | 3980 } |
3980 | 3981 |
3981 } // namespace gles2 | 3982 } // namespace gles2 |
3982 } // namespace gpu | 3983 } // namespace gpu |
OLD | NEW |