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

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: reveman@ comments. Created 5 years, 9 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..2a8ab7af643f3fd3735233d07029fb29389fc0cc 100644
--- a/content/common/gpu/gpu_messages.h
+++ b/content/common/gpu/gpu_messages.h
@@ -608,12 +608,12 @@ IPC_MESSAGE_ROUTED2(GpuCommandBufferMsg_SignalQuery,
// Create an image from an existing gpu memory buffer. The id that can be
// used to identify the image from a command buffer.
-IPC_MESSAGE_ROUTED5(GpuCommandBufferMsg_CreateImage,
- int32 /* id */,
- gfx::GpuMemoryBufferHandle /* gpu_memory_buffer */,
- gfx::Size /* size */,
- gfx::GpuMemoryBuffer::Format /* format */,
- uint32 /* internalformat */)
+IPC_MESSAGE_ROUTED5(
+ GpuCommandBufferMsg_CreateImage, int32 /* id */,
+ std::vector<gfx::GpuMemoryBufferHandle> /* gpu_memory_buffers */,
+ gfx::Size /* size */,
+ std::vector<gfx::GpuMemoryBuffer::Format> /* formats */,
+ uint32 /* internalformat */)
// Destroy a previously created image.
IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage,

Powered by Google App Engine
This is Rietveld 408576698