Index: gpu/command_buffer/common/gles2_cmd_format_autogen.h |
diff --git a/gpu/command_buffer/common/gles2_cmd_format_autogen.h b/gpu/command_buffer/common/gles2_cmd_format_autogen.h |
index 34c50c2ab7e623b5f5b4509593949e7db4e868a0..f74400e5bc261d2a6eb560cb7d6b4ee8292eea42 100644 |
--- a/gpu/command_buffer/common/gles2_cmd_format_autogen.h |
+++ b/gpu/command_buffer/common/gles2_cmd_format_autogen.h |
@@ -9590,6 +9590,55 @@ COMPILE_ASSERT(offsetof(PostSubBufferCHROMIUM, width) == 12, |
COMPILE_ASSERT(offsetof(PostSubBufferCHROMIUM, height) == 16, |
OffsetOf_PostSubBufferCHROMIUM_height_not_16); |
+struct SetOverlayPlaneCHROMIUM { |
+ typedef SetOverlayPlaneCHROMIUM ValueType; |
+ static const CommandId kCmdId = kSetOverlayPlaneCHROMIUM; |
+ static const cmd::ArgFlags kArgFlags = cmd::kFixed; |
+ static const uint8 cmd_flags = CMD_FLAG_SET_TRACE_LEVEL(3); |
+ |
+ static uint32 ComputeSize() { |
+ return static_cast<uint32>(sizeof(ValueType)); // NOLINT |
+ } |
+ |
+ void SetHeader() { header.SetCmd<ValueType>(); } |
+ |
+ void Init(GLint _plane_id, |
+ GLenum _texture_id, |
+ GLint _x, |
+ GLint _y, |
+ GLint _width, |
+ GLint _height) { |
+ SetHeader(); |
+ plane_id = _plane_id; |
+ texture_id = _texture_id; |
+ x = _x; |
+ y = _y; |
+ width = _width; |
+ height = _height; |
+ } |
+ |
+ void* Set(void* cmd, |
+ GLint _plane_id, |
+ GLenum _texture_id, |
+ GLint _x, |
+ GLint _y, |
+ GLint _width, |
+ GLint _height) { |
+ static_cast<ValueType*>(cmd) |
+ ->Init(_plane_id, _texture_id, _x, _y, _width, _height); |
+ return NextCmdAddress<ValueType>(cmd); |
+ } |
+ |
+ gpu::CommandHeader header; |
+ int32 plane_id; |
+ ; |
+ uint32 texture_id; |
+ int32 x; |
+ int32 y; |
+ int32 width; |
+ int32 height; |
+}; |
+ |
struct TexImageIOSurface2DCHROMIUM { |
typedef TexImageIOSurface2DCHROMIUM ValueType; |
static const CommandId kCmdId = kTexImageIOSurface2DCHROMIUM; |