| 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 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 } | 376 } |
| 377 | 377 |
| 378 void GLManager::SignalQuery(uint32 query, const base::Closure& callback) { | 378 void GLManager::SignalQuery(uint32 query, const base::Closure& callback) { |
| 379 NOTIMPLEMENTED(); | 379 NOTIMPLEMENTED(); |
| 380 } | 380 } |
| 381 | 381 |
| 382 void GLManager::SetSurfaceVisible(bool visible) { | 382 void GLManager::SetSurfaceVisible(bool visible) { |
| 383 NOTIMPLEMENTED(); | 383 NOTIMPLEMENTED(); |
| 384 } | 384 } |
| 385 | 385 |
| 386 void GLManager::Echo(const base::Closure& callback) { | |
| 387 NOTIMPLEMENTED(); | |
| 388 } | |
| 389 | |
| 390 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { | 386 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { |
| 391 NOTIMPLEMENTED(); | 387 NOTIMPLEMENTED(); |
| 392 return 0; | 388 return 0; |
| 393 } | 389 } |
| 394 | 390 |
| 395 } // namespace gpu | 391 } // namespace gpu |
| OLD | NEW |