| 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 3438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3449 | 3449 |
| 3450 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( | 3450 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( |
| 3451 GLuint texture, | 3451 GLuint texture, |
| 3452 GLboolean promotion_hint, | 3452 GLboolean promotion_hint, |
| 3453 GLint display_x, | 3453 GLint display_x, |
| 3454 GLint display_y) { | 3454 GLint display_y) { |
| 3455 NOTIMPLEMENTED(); | 3455 NOTIMPLEMENTED(); |
| 3456 return error::kNoError; | 3456 return error::kNoError; |
| 3457 } | 3457 } |
| 3458 | 3458 |
| 3459 error::Error GLES2DecoderPassthroughImpl::DoSetDrawRectangleCHROMIUM( |
| 3460 GLint x, |
| 3461 GLint y, |
| 3462 GLint width, |
| 3463 GLint height) { |
| 3464 NOTIMPLEMENTED(); |
| 3465 return error::kNoError; |
| 3466 } |
| 3467 |
| 3459 } // namespace gles2 | 3468 } // namespace gles2 |
| 3460 } // namespace gpu | 3469 } // namespace gpu |
| OLD | NEW |