Index: gpu/command_buffer/common/gles2_cmd_format_test_autogen.h |
diff --git a/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h b/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h |
index a7ff6bd7b316d3672a1c1dc5708d21c86b2b0d38..8a9539d31685b6d71053da14a40723efc43c9dd7 100644 |
--- a/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h |
+++ b/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h |
@@ -1441,17 +1441,16 @@ TEST_F(GLES2FormatTest, GetInternalformativ) { |
cmds::GetInternalformativ& cmd = *GetBufferAs<cmds::GetInternalformativ>(); |
void* next_cmd = |
cmd.Set(&cmd, static_cast<GLenum>(11), static_cast<GLenum>(12), |
- static_cast<GLenum>(13), static_cast<GLsizei>(14), |
- static_cast<uint32_t>(15), static_cast<uint32_t>(16)); |
+ static_cast<GLenum>(13), static_cast<uint32_t>(14), |
+ static_cast<uint32_t>(15)); |
EXPECT_EQ(static_cast<uint32_t>(cmds::GetInternalformativ::kCmdId), |
cmd.header.command); |
EXPECT_EQ(sizeof(cmd), cmd.header.size * 4u); |
EXPECT_EQ(static_cast<GLenum>(11), cmd.target); |
EXPECT_EQ(static_cast<GLenum>(12), cmd.format); |
EXPECT_EQ(static_cast<GLenum>(13), cmd.pname); |
- EXPECT_EQ(static_cast<GLsizei>(14), cmd.bufSize); |
- EXPECT_EQ(static_cast<uint32_t>(15), cmd.params_shm_id); |
- EXPECT_EQ(static_cast<uint32_t>(16), cmd.params_shm_offset); |
+ EXPECT_EQ(static_cast<uint32_t>(14), cmd.params_shm_id); |
+ EXPECT_EQ(static_cast<uint32_t>(15), cmd.params_shm_offset); |
CheckBytesWrittenMatchesExpectedSize(next_cmd, sizeof(cmd)); |
} |