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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 | 509 |
510 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { | 510 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { |
511 NOTIMPLEMENTED(); | 511 NOTIMPLEMENTED(); |
512 return 0; | 512 return 0; |
513 } | 513 } |
514 | 514 |
515 void GLManager::SetLock(base::Lock*) { | 515 void GLManager::SetLock(base::Lock*) { |
516 NOTIMPLEMENTED(); | 516 NOTIMPLEMENTED(); |
517 } | 517 } |
518 | 518 |
| 519 bool GLManager::IsGpuChannelLost() { |
| 520 NOTIMPLEMENTED(); |
| 521 return false; |
| 522 } |
| 523 |
519 } // namespace gpu | 524 } // namespace gpu |
OLD | NEW |