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

Unified Diff: gpu/ipc/common/sync_token_struct_traits.h

Issue 2019833002: Implement StructTraits for various cc and gpu types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mailbox_name by ref to make windows happy 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/ipc/common/sync_token.typemap ('k') | gpu/ipc/common/traits_test_service.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/common/sync_token_struct_traits.h
diff --git a/gpu/ipc/common/sync_token_struct_traits.h b/gpu/ipc/common/sync_token_struct_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..8dc381d31f2c9f8334a732388ad24546a8bffce9
--- /dev/null
+++ b/gpu/ipc/common/sync_token_struct_traits.h
@@ -0,0 +1,51 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef GPU_IPC_COMMON_SYNC_TOKEN_STRUCT_TRAITS_H_
+#define GPU_IPC_COMMON_SYNC_TOKEN_STRUCT_TRAITS_H_
+
+#include "gpu/command_buffer/common/sync_token.h"
+#include "gpu/ipc/common/sync_token.mojom.h"
+
+namespace mojo {
+
+template <>
+struct StructTraits<gpu::mojom::SyncToken, gpu::SyncToken> {
+ static bool verified_flush(const gpu::SyncToken& token) {
+ return token.verified_flush();
+ }
+
+ static gpu::mojom::CommandBufferNamespace namespace_id(
+ const gpu::SyncToken& token) {
+ return static_cast<gpu::mojom::CommandBufferNamespace>(
+ token.namespace_id());
+ }
+
+ static int32_t extra_data_field(const gpu::SyncToken& token) {
+ return token.extra_data_field();
+ }
+
+ static uint64_t command_buffer_id(const gpu::SyncToken& token) {
+ return token.command_buffer_id().GetUnsafeValue();
+ }
+
+ static uint64_t release_count(const gpu::SyncToken& token) {
+ return token.release_count();
+ }
+
+ static bool Read(gpu::mojom::SyncTokenDataView data, gpu::SyncToken* out) {
+ *out = gpu::SyncToken(
+ static_cast<gpu::CommandBufferNamespace>(data.namespace_id()),
+ data.extra_data_field(),
+ gpu::CommandBufferId::FromUnsafeValue(data.command_buffer_id()),
+ data.release_count());
+ if (data.verified_flush())
+ out->SetVerifyFlush();
+ return true;
+ }
+};
+
+} // namespace mojo
+
+#endif // GPU_IPC_COMMON_SYNC_TOKEN_STRUCT_TRAITS_H_
« no previous file with comments | « gpu/ipc/common/sync_token.typemap ('k') | gpu/ipc/common/traits_test_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698