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

Unified Diff: content/common/gpu/gpu_messages.h

Issue 962723002: Change CHROMIUM_image declarations to support multi planar input. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle through IPC. Created 5 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 side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/gpu_messages.h
diff --git a/content/common/gpu/gpu_messages.h b/content/common/gpu/gpu_messages.h
index 5026150b802bb909ca3d615649d6328069068844..e3d1c2ae7f3436d9d7ea125cb32c17d52e233aed 100644
--- a/content/common/gpu/gpu_messages.h
+++ b/content/common/gpu/gpu_messages.h
@@ -610,9 +610,9 @@ IPC_MESSAGE_ROUTED2(GpuCommandBufferMsg_SignalQuery,
// used to identify the image from a command buffer.
IPC_MESSAGE_ROUTED5(GpuCommandBufferMsg_CreateImage,
int32 /* id */,
- gfx::GpuMemoryBufferHandle /* gpu_memory_buffer */,
+ gfx::GpuMemoryBufferHandle* /* gpu_memory_buffer */,
reveman 2015/03/04 05:56:00 You can't pass pointers with IPC messages. You nee
emircan 2015/03/04 23:31:50 Changed it to std::vector<gfx::GpuMemoryBufferHand
gfx::Size /* size */,
- gfx::GpuMemoryBuffer::Format /* format */,
+ gfx::GpuMemoryBuffer::Format* /* format */,
reveman 2015/03/04 05:56:00 ditto.
emircan 2015/03/04 23:31:50 Changed it to std::vector<GpuMemoryBuffer::Format>
uint32 /* internalformat */)
// Destroy a previously created image.

Powered by Google App Engine
This is Rietveld 408576698