| 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/gles2_conform_support/egl/display.h" | 5 #include "gpu/gles2_conform_support/egl/display.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 } | 352 } |
| 353 | 353 |
| 354 void Display::SignalQuery(uint32_t query, const base::Closure& callback) { | 354 void Display::SignalQuery(uint32_t query, const base::Closure& callback) { |
| 355 NOTIMPLEMENTED(); | 355 NOTIMPLEMENTED(); |
| 356 } | 356 } |
| 357 | 357 |
| 358 void Display::SetLock(base::Lock*) { | 358 void Display::SetLock(base::Lock*) { |
| 359 NOTIMPLEMENTED(); | 359 NOTIMPLEMENTED(); |
| 360 } | 360 } |
| 361 | 361 |
| 362 bool Display::IsGpuChannelLost() { | |
| 363 NOTIMPLEMENTED(); | |
| 364 return false; | |
| 365 } | |
| 366 | |
| 367 void Display::EnsureWorkVisible() { | 362 void Display::EnsureWorkVisible() { |
| 368 // This is only relevant for out-of-process command buffers. | 363 // This is only relevant for out-of-process command buffers. |
| 369 } | 364 } |
| 370 | 365 |
| 371 gpu::CommandBufferNamespace Display::GetNamespaceID() const { | 366 gpu::CommandBufferNamespace Display::GetNamespaceID() const { |
| 372 return gpu::CommandBufferNamespace::IN_PROCESS; | 367 return gpu::CommandBufferNamespace::IN_PROCESS; |
| 373 } | 368 } |
| 374 | 369 |
| 375 gpu::CommandBufferId Display::GetCommandBufferID() const { | 370 gpu::CommandBufferId Display::GetCommandBufferID() const { |
| 376 return gpu::CommandBufferId(); | 371 return gpu::CommandBufferId(); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 399 void Display::SignalSyncToken(const gpu::SyncToken& sync_token, | 394 void Display::SignalSyncToken(const gpu::SyncToken& sync_token, |
| 400 const base::Closure& callback) { | 395 const base::Closure& callback) { |
| 401 NOTIMPLEMENTED(); | 396 NOTIMPLEMENTED(); |
| 402 } | 397 } |
| 403 | 398 |
| 404 bool Display::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) { | 399 bool Display::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) { |
| 405 return false; | 400 return false; |
| 406 } | 401 } |
| 407 | 402 |
| 408 } // namespace egl | 403 } // namespace egl |
| OLD | NEW |