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

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

Issue 2681033011: Changed GpuVSyncProvider to implement gfx::VSyncProvider (Closed)
Patch Set: Used base::MakeUnique Created 3 years, 10 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
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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 GpuCommandBufferMsg_CreateImage_Params /* params */) 245 GpuCommandBufferMsg_CreateImage_Params /* params */)
246 246
247 // Destroy a previously created image. 247 // Destroy a previously created image.
248 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage, int32_t /* id */) 248 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage, int32_t /* id */)
249 249
250 // Attaches an external image stream to the client texture. 250 // Attaches an external image stream to the client texture.
251 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_CreateStreamTexture, 251 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_CreateStreamTexture,
252 uint32_t, /* client_texture_id */ 252 uint32_t, /* client_texture_id */
253 int32_t, /* stream_id */ 253 int32_t, /* stream_id */
254 bool /* succeeded */) 254 bool /* succeeded */)
255
256 // Start or stop VSync sygnal production on GPU side (Windows only).
257 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetNeedsVSync, bool /* needs_vsync */)
OLDNEW
« no previous file with comments | « no previous file | gpu/ipc/in_process_command_buffer.h » ('j') | gpu/ipc/in_process_command_buffer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698