| 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 | 8 |
| 9 namespace gpu { | 9 namespace gpu { |
| 10 namespace gles2 { | 10 namespace gles2 { |
| (...skipping 3306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3317 | 3317 |
| 3318 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( | 3318 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( |
| 3319 GLuint texture, | 3319 GLuint texture, |
| 3320 GLboolean promotion_hint, | 3320 GLboolean promotion_hint, |
| 3321 GLint display_x, | 3321 GLint display_x, |
| 3322 GLint display_y) { | 3322 GLint display_y) { |
| 3323 NOTIMPLEMENTED(); | 3323 NOTIMPLEMENTED(); |
| 3324 return error::kNoError; | 3324 return error::kNoError; |
| 3325 } | 3325 } |
| 3326 | 3326 |
| 3327 error::Error GLES2DecoderPassthroughImpl::DoSetDrawRectangleCHROMIUM( |
| 3328 GLint x, |
| 3329 GLint y, |
| 3330 GLint width, |
| 3331 GLint height) { |
| 3332 NOTIMPLEMENTED(); |
| 3333 return error::kNoError; |
| 3334 } |
| 3335 |
| 3327 } // namespace gles2 | 3336 } // namespace gles2 |
| 3328 } // namespace gpu | 3337 } // namespace gpu |
| OLD | NEW |