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

Unified Diff: gpu/command_buffer/client/gpu_control_client.h

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, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/client/gpu_control.h ('k') | gpu/command_buffer/client/query_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gpu_control_client.h
diff --git a/gpu/command_buffer/client/gpu_control_client.h b/gpu/command_buffer/client/gpu_control_client.h
index aaee9b197ee9a47e5df0c314192963a621b07fb9..75d84ecc0da2d550a8ebff0b751c968988bf6d65 100644
--- a/gpu/command_buffer/client/gpu_control_client.h
+++ b/gpu/command_buffer/client/gpu_control_client.h
@@ -11,7 +11,16 @@ namespace gpu {
class GpuControlClient {
public:
+ // Informs the client that the context was lost. It should inform its own
+ // clients or take actions as needed. This will only be called a single time
+ // for any GpuControl.
virtual void OnGpuControlLostContext() = 0;
+ // This may happen inside calls from the client to the GpuControl, so this
+ // function is reentrant. It informs the client of loss, but the client will
+ // also receive a OnGpuControlLostContext (non-re-entrantly) in the future.
+ // Use this only to update internal state if needed to make lost context be
+ // visible immediately while unwinding the call stack.
+ virtual void OnGpuControlLostContextMaybeReentrant() = 0;
virtual void OnGpuControlErrorMessage(const char* message, int32_t id) = 0;
};
« no previous file with comments | « gpu/command_buffer/client/gpu_control.h ('k') | gpu/command_buffer/client/query_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698