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

Unified Diff: mojo/services/gpu/public/interfaces/command_buffer.mojom

Issue 830593003: Update mojo sdk to rev 9fbbc4f0fef1187312316c0ed992342474e139f1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cherry-pick mojo 9d3b8dd17f12d20035a14737fdc38dd926890ff8 Created 5 years, 11 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 | « mojo/services/gpu/public/interfaces/BUILD.gn ('k') | mojo/services/gpu/public/interfaces/gpu.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/gpu/public/interfaces/command_buffer.mojom
diff --git a/mojo/services/gpu/public/interfaces/command_buffer.mojom b/mojo/services/gpu/public/interfaces/command_buffer.mojom
index 5301aeaa838fb928d973573375ec6840d16d8143..f071c68e600a4acd669b1cc9d6ed5e653da4cf0f 100644
--- a/mojo/services/gpu/public/interfaces/command_buffer.mojom
+++ b/mojo/services/gpu/public/interfaces/command_buffer.mojom
@@ -18,7 +18,7 @@ struct CommandBufferState {
interface CommandBufferSyncClient {
DidInitialize(bool success, GpuCapabilities capabilities);
- DidMakeProgress(CommandBufferState? state);
+ DidMakeProgress(CommandBufferState state);
};
interface CommandBufferSyncPointClient {
@@ -27,14 +27,14 @@ interface CommandBufferSyncPointClient {
[Client=CommandBufferClient]
interface CommandBuffer {
- Initialize(CommandBufferSyncClient? sync_client,
- CommandBufferSyncPointClient? sync_point_client,
- handle<shared_buffer>? shared_state);
+ Initialize(CommandBufferSyncClient sync_client,
+ CommandBufferSyncPointClient sync_point_client,
+ handle<shared_buffer> shared_state);
SetGetBuffer(int32 buffer);
Flush(int32 put_offset);
MakeProgress(int32 last_get_offset);
RegisterTransferBuffer(
- int32 id, handle<shared_buffer>? transfer_buffer, uint32 size);
+ int32 id, handle<shared_buffer> transfer_buffer, uint32 size);
DestroyTransferBuffer(int32 id);
// InsertSyncPoint returns the sync point returned via DidInsertSyncPoint.
« no previous file with comments | « mojo/services/gpu/public/interfaces/BUILD.gn ('k') | mojo/services/gpu/public/interfaces/gpu.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698