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

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

Issue 1469863003: Cleanup SurfaceVisibility code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase.. Created 5 years 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
« no previous file with comments | « gpu/command_buffer/tests/gl_manager.h ('k') | gpu/gles2_conform_support/egl/display.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 481
482 void GLManager::SignalSyncPoint(uint32 sync_point, 482 void GLManager::SignalSyncPoint(uint32 sync_point,
483 const base::Closure& callback) { 483 const base::Closure& callback) {
484 NOTIMPLEMENTED(); 484 NOTIMPLEMENTED();
485 } 485 }
486 486
487 void GLManager::SignalQuery(uint32 query, const base::Closure& callback) { 487 void GLManager::SignalQuery(uint32 query, const base::Closure& callback) {
488 NOTIMPLEMENTED(); 488 NOTIMPLEMENTED();
489 } 489 }
490 490
491 void GLManager::SetSurfaceVisible(bool visible) {
492 NOTIMPLEMENTED();
493 }
494
495 void GLManager::SetLock(base::Lock*) { 491 void GLManager::SetLock(base::Lock*) {
496 NOTIMPLEMENTED(); 492 NOTIMPLEMENTED();
497 } 493 }
498 494
499 bool GLManager::IsGpuChannelLost() { 495 bool GLManager::IsGpuChannelLost() {
500 NOTIMPLEMENTED(); 496 NOTIMPLEMENTED();
501 return false; 497 return false;
502 } 498 }
503 499
504 gpu::CommandBufferNamespace GLManager::GetNamespaceID() const { 500 gpu::CommandBufferNamespace GLManager::GetNamespaceID() const {
(...skipping 23 matching lines...) Expand all
528 void GLManager::SignalSyncToken(const gpu::SyncToken& sync_token, 524 void GLManager::SignalSyncToken(const gpu::SyncToken& sync_token,
529 const base::Closure& callback) { 525 const base::Closure& callback) {
530 NOTIMPLEMENTED(); 526 NOTIMPLEMENTED();
531 } 527 }
532 528
533 bool GLManager::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) { 529 bool GLManager::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) {
534 return false; 530 return false;
535 } 531 }
536 532
537 } // namespace gpu 533 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_manager.h ('k') | gpu/gles2_conform_support/egl/display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698