OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/tests/gl_manager.h" | 5 #include "gpu/command_buffer/tests/gl_manager.h" |
6 | 6 |
7 #include <GLES2/gl2.h> | 7 #include <GLES2/gl2.h> |
8 #include <GLES2/gl2ext.h> | 8 #include <GLES2/gl2ext.h> |
9 #include <GLES2/gl2extchromium.h> | 9 #include <GLES2/gl2extchromium.h> |
10 | 10 |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 } | 507 } |
508 | 508 |
509 void GLManager::SetSurfaceVisible(bool visible) { | 509 void GLManager::SetSurfaceVisible(bool visible) { |
510 NOTIMPLEMENTED(); | 510 NOTIMPLEMENTED(); |
511 } | 511 } |
512 | 512 |
513 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { | 513 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { |
514 NOTIMPLEMENTED(); | 514 NOTIMPLEMENTED(); |
515 return 0; | 515 return 0; |
516 } | 516 } |
| 517 uint32 GLManager::CreateStreamTextureImage(int32 image_id) { |
| 518 NOTIMPLEMENTED(); |
| 519 return 0; |
| 520 } |
517 | 521 |
518 void GLManager::SetLock(base::Lock*) { | 522 void GLManager::SetLock(base::Lock*) { |
519 NOTIMPLEMENTED(); | 523 NOTIMPLEMENTED(); |
520 } | 524 } |
521 | 525 |
522 bool GLManager::IsGpuChannelLost() { | 526 bool GLManager::IsGpuChannelLost() { |
523 NOTIMPLEMENTED(); | 527 NOTIMPLEMENTED(); |
524 return false; | 528 return false; |
525 } | 529 } |
526 | 530 |
527 } // namespace gpu | 531 } // namespace gpu |
OLD | NEW |