Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: gpu/command_buffer/tests/gl_manager.cc

Issue 1129943006: Implement StreamTexture::BindTexImage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698