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

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

Issue 1919203003: Revert of Report lost context from GLES2Implementation based on share group state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
362 void Display::EnsureWorkVisible() { 367 void Display::EnsureWorkVisible() {
363 // This is only relevant for out-of-process command buffers. 368 // This is only relevant for out-of-process command buffers.
364 } 369 }
365 370
366 gpu::CommandBufferNamespace Display::GetNamespaceID() const { 371 gpu::CommandBufferNamespace Display::GetNamespaceID() const {
367 return gpu::CommandBufferNamespace::IN_PROCESS; 372 return gpu::CommandBufferNamespace::IN_PROCESS;
368 } 373 }
369 374
370 gpu::CommandBufferId Display::GetCommandBufferID() const { 375 gpu::CommandBufferId Display::GetCommandBufferID() const {
371 return gpu::CommandBufferId(); 376 return gpu::CommandBufferId();
(...skipping 22 matching lines...) Expand all
394 void Display::SignalSyncToken(const gpu::SyncToken& sync_token, 399 void Display::SignalSyncToken(const gpu::SyncToken& sync_token,
395 const base::Closure& callback) { 400 const base::Closure& callback) {
396 NOTIMPLEMENTED(); 401 NOTIMPLEMENTED();
397 } 402 }
398 403
399 bool Display::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) { 404 bool Display::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) {
400 return false; 405 return false;
401 } 406 }
402 407
403 } // namespace egl 408 } // 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