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 3291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3302 | 3302 |
3303 error::Error | 3303 error::Error |
3304 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( | 3304 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( |
3305 GLint location, | 3305 GLint location, |
3306 GLboolean transpose, | 3306 GLboolean transpose, |
3307 const volatile GLfloat* defaultValue) { | 3307 const volatile GLfloat* defaultValue) { |
3308 NOTIMPLEMENTED(); | 3308 NOTIMPLEMENTED(); |
3309 return error::kNoError; | 3309 return error::kNoError; |
3310 } | 3310 } |
3311 | 3311 |
| 3312 error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( |
| 3313 GLuint texture, |
| 3314 GLboolean promotion_hint, |
| 3315 GLint display_x, |
| 3316 GLint display_y) { |
| 3317 NOTIMPLEMENTED(); |
| 3318 return error::kNoError; |
| 3319 } |
| 3320 |
3312 } // namespace gles2 | 3321 } // namespace gles2 |
3313 } // namespace gpu | 3322 } // namespace gpu |
OLD | NEW |