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 3236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3247 | 3247 |
3248 error::Error | 3248 error::Error |
3249 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( | 3249 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( |
3250 GLint location, | 3250 GLint location, |
3251 GLboolean transpose, | 3251 GLboolean transpose, |
3252 const volatile GLfloat* defaultValue) { | 3252 const volatile GLfloat* defaultValue) { |
3253 NOTIMPLEMENTED(); | 3253 NOTIMPLEMENTED(); |
3254 return error::kNoError; | 3254 return error::kNoError; |
3255 } | 3255 } |
3256 | 3256 |
| 3257 error::Error GLES2DecoderPassthroughImpl::DoSendOverlayPromotionHintCHROMIUM( |
| 3258 GLuint texture, |
| 3259 GLboolean promotion_hint, |
| 3260 GLint display_x, |
| 3261 GLint display_y) { |
| 3262 NOTIMPLEMENTED(); |
| 3263 return error::kNoError; |
| 3264 } |
| 3265 |
3257 } // namespace gles2 | 3266 } // namespace gles2 |
3258 } // namespace gpu | 3267 } // namespace gpu |
OLD | NEW |