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

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

Issue 1848923003: Revert of Make Android StreamTexture implement GLStreamTextureImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | media/blink/video_frame_compositor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/common/gpu_messages.h
diff --git a/gpu/ipc/common/gpu_messages.h b/gpu/ipc/common/gpu_messages.h
index 61cb08ed6e3df3b76b78cfcb186fdc7341040946..00cd33472d7fa7b4f069f3762c3bf9ee582c9089 100644
--- a/gpu/ipc/common/gpu_messages.h
+++ b/gpu/ipc/common/gpu_messages.h
@@ -70,6 +70,27 @@
IPC_STRUCT_MEMBER(uint64_t, image_release_count)
IPC_STRUCT_END()
+#if defined(OS_ANDROID)
+IPC_STRUCT_BEGIN(GpuStreamTextureMsg_MatrixChanged_Params)
+ IPC_STRUCT_MEMBER(float, m00)
+ IPC_STRUCT_MEMBER(float, m01)
+ IPC_STRUCT_MEMBER(float, m02)
+ IPC_STRUCT_MEMBER(float, m03)
+ IPC_STRUCT_MEMBER(float, m10)
+ IPC_STRUCT_MEMBER(float, m11)
+ IPC_STRUCT_MEMBER(float, m12)
+ IPC_STRUCT_MEMBER(float, m13)
+ IPC_STRUCT_MEMBER(float, m20)
+ IPC_STRUCT_MEMBER(float, m21)
+ IPC_STRUCT_MEMBER(float, m22)
+ IPC_STRUCT_MEMBER(float, m23)
+ IPC_STRUCT_MEMBER(float, m30)
+ IPC_STRUCT_MEMBER(float, m31)
+ IPC_STRUCT_MEMBER(float, m32)
+ IPC_STRUCT_MEMBER(float, m33)
+IPC_STRUCT_END()
+#endif
+
//------------------------------------------------------------------------------
// GPU Channel Messages
// These are messages from a renderer process to the GPU process.
@@ -115,6 +136,10 @@
// Inform the renderer that a new frame is available.
IPC_MESSAGE_ROUTED0(GpuStreamTextureMsg_FrameAvailable)
+
+// Inform the renderer process that the transform matrix has changed.
+IPC_MESSAGE_ROUTED1(GpuStreamTextureMsg_MatrixChanged,
+ GpuStreamTextureMsg_MatrixChanged_Params /* params */)
#endif
//------------------------------------------------------------------------------
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | media/blink/video_frame_compositor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698