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

Side by Side Diff: gpu/ipc/common/gpu_messages.h

Issue 1937173002: Revert of Pepper takes ownership of a mailbox before passing it to the texture layer. (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/ipc/client/command_buffer_proxy_impl.cc ('k') | gpu/ipc/service/gpu_command_buffer_stub.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 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 // calling process. 130 // calling process.
131 IPC_SYNC_MESSAGE_ROUTED1_2(GpuCommandBufferMsg_Initialize, 131 IPC_SYNC_MESSAGE_ROUTED1_2(GpuCommandBufferMsg_Initialize,
132 base::SharedMemoryHandle /* shared_state */, 132 base::SharedMemoryHandle /* shared_state */,
133 bool /* result */, 133 bool /* result */,
134 gpu::Capabilities /* capabilities */) 134 gpu::Capabilities /* capabilities */)
135 135
136 // Sets the shared memory buffer used for commands. 136 // Sets the shared memory buffer used for commands.
137 IPC_SYNC_MESSAGE_ROUTED1_0(GpuCommandBufferMsg_SetGetBuffer, 137 IPC_SYNC_MESSAGE_ROUTED1_0(GpuCommandBufferMsg_SetGetBuffer,
138 int32_t /* shm_id */) 138 int32_t /* shm_id */)
139 139
140 // Takes the front buffer into a mailbox. This allows another context to draw 140 // Produces the front buffer into a mailbox. This allows another context to draw
141 // the output of this context. 141 // the output of this context.
142 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_TakeFrontBuffer, 142 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_ProduceFrontBuffer,
143 gpu::Mailbox /* mailbox */) 143 gpu::Mailbox /* mailbox */)
144 144
145 // Returns a front buffer taken with GpuCommandBufferMsg_TakeFrontBuffer. This
146 // allows it to be reused.
147 IPC_MESSAGE_ROUTED3(GpuCommandBufferMsg_ReturnFrontBuffer,
148 gpu::Mailbox /* mailbox */,
149 gpu::SyncToken /* sync_token */,
150 bool /* is_lost */)
151
152 // Wait until the token is in a specific range, inclusive. 145 // Wait until the token is in a specific range, inclusive.
153 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_WaitForTokenInRange, 146 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_WaitForTokenInRange,
154 int32_t /* start */, 147 int32_t /* start */,
155 int32_t /* end */, 148 int32_t /* end */,
156 gpu::CommandBuffer::State /* state */) 149 gpu::CommandBuffer::State /* state */)
157 150
158 // Wait until the get offset is in a specific range, inclusive. 151 // Wait until the get offset is in a specific range, inclusive.
159 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_WaitForGetOffsetInRange, 152 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_WaitForGetOffsetInRange,
160 int32_t /* start */, 153 int32_t /* start */,
161 int32_t /* end */, 154 int32_t /* end */,
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 GpuCommandBufferMsg_CreateImage_Params /* params */) 213 GpuCommandBufferMsg_CreateImage_Params /* params */)
221 214
222 // Destroy a previously created image. 215 // Destroy a previously created image.
223 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage, int32_t /* id */) 216 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage, int32_t /* id */)
224 217
225 // Attaches an external image stream to the client texture. 218 // Attaches an external image stream to the client texture.
226 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_CreateStreamTexture, 219 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_CreateStreamTexture,
227 uint32_t, /* client_texture_id */ 220 uint32_t, /* client_texture_id */
228 int32_t, /* stream_id */ 221 int32_t, /* stream_id */
229 bool /* succeeded */) 222 bool /* succeeded */)
OLDNEW
« no previous file with comments | « gpu/ipc/client/command_buffer_proxy_impl.cc ('k') | gpu/ipc/service/gpu_command_buffer_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698