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 3304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3315 | 3315 |
3316 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( | 3316 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( |
3317 GLuint texture, | 3317 GLuint texture, |
3318 GLboolean promotion_hint, | 3318 GLboolean promotion_hint, |
3319 GLint display_x, | 3319 GLint display_x, |
3320 GLint display_y) { | 3320 GLint display_y) { |
3321 NOTIMPLEMENTED(); | 3321 NOTIMPLEMENTED(); |
3322 return error::kNoError; | 3322 return error::kNoError; |
3323 } | 3323 } |
3324 | 3324 |
| 3325 error::Error GLES2DecoderPassthroughImpl::DoPerformanceHintCHROMIUM( |
| 3326 GLenum mode) { |
| 3327 NOTIMPLEMENTED(); |
| 3328 return error::kNoError; |
| 3329 } |
| 3330 |
3325 } // namespace gles2 | 3331 } // namespace gles2 |
3326 } // namespace gpu | 3332 } // namespace gpu |
OLD | NEW |