| 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 422 | 422 | 
| 423 void GLManager::SetSurfaceVisible(bool visible) { | 423 void GLManager::SetSurfaceVisible(bool visible) { | 
| 424   NOTIMPLEMENTED(); | 424   NOTIMPLEMENTED(); | 
| 425 } | 425 } | 
| 426 | 426 | 
| 427 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { | 427 uint32 GLManager::CreateStreamTexture(uint32 texture_id) { | 
| 428   NOTIMPLEMENTED(); | 428   NOTIMPLEMENTED(); | 
| 429   return 0; | 429   return 0; | 
| 430 } | 430 } | 
| 431 | 431 | 
|  | 432 void GLManager::SetLock(base::Lock*) { | 
|  | 433   NOTIMPLEMENTED(); | 
|  | 434 } | 
|  | 435 | 
| 432 }  // namespace gpu | 436 }  // namespace gpu | 
| OLD | NEW | 
|---|