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

Unified Diff: gpu/command_buffer/common/gles2_cmd_format.h

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some fixes Created 5 years, 3 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
Index: gpu/command_buffer/common/gles2_cmd_format.h
diff --git a/gpu/command_buffer/common/gles2_cmd_format.h b/gpu/command_buffer/common/gles2_cmd_format.h
index d1ad74005c58d78e79b052dc104c90f67abef39e..d2d5319a4c73b1a08c4472654d8d73a12a70c335 100644
--- a/gpu/command_buffer/common/gles2_cmd_format.h
+++ b/gpu/command_buffer/common/gles2_cmd_format.h
@@ -201,6 +201,13 @@ struct UniformsES3Header {
// UniformES3Info uniforms[num_uniforms];
};
+// The format of fence sync tokens.
+struct SyncToken {
+ int channel_client_id;
+ uint32_t route_id;
+ uint32_t release_count;
+};
+
// The format of QuerySync used by EXT_occlusion_query_boolean
struct QuerySync {
void Reset() {

Powered by Google App Engine
This is Rietveld 408576698