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

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

Issue 1746983002: Make Android StreamTexture implement GLStreamTextureImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
Index: content/common/gpu/gpu_messages.h
diff --git a/content/common/gpu/gpu_messages.h b/content/common/gpu/gpu_messages.h
index 3f0042760851f78908e56451719b02a80d4c83e9..f00d1e05cdb3ec4fa94fa31d9c9b3e2b9dfab115 100644
--- a/content/common/gpu/gpu_messages.h
+++ b/content/common/gpu/gpu_messages.h
@@ -80,27 +80,6 @@ IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage)
IPC_STRUCT_MEMBER(std::string, message)
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
-
IPC_STRUCT_BEGIN(GpuCommandBufferMsg_CreateImage_Params)
IPC_STRUCT_MEMBER(int32_t, id)
IPC_STRUCT_MEMBER(gfx::GpuMemoryBufferHandle, gpu_memory_buffer)
@@ -215,10 +194,6 @@ IPC_MESSAGE_ROUTED0(GpuStreamTextureMsg_StartListening)
// 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
//------------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698