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

Side by Side Diff: gpu/gles2_conform_support/egl/display.cc

Issue 1916303003: Report lost context from GLES2Implementation based on share group state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lost-share-group: disconnect-channel Created 4 years, 7 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
« no previous file with comments | « gpu/gles2_conform_support/egl/display.h ('k') | gpu/ipc/client/command_buffer_proxy_impl.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/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
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
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
OLDNEW
« no previous file with comments | « gpu/gles2_conform_support/egl/display.h ('k') | gpu/ipc/client/command_buffer_proxy_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698