Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
index 477c3bf2cade3abda74d13a7d1f8bd22a07805ba..58f5a8649f8cd9a4d73564b32f3078ea114bbf24 100644 |
--- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
@@ -326,10 +326,9 @@ TEST_F(GLES2DecoderTest1, ClearStencilValidArgs) { |
} |
TEST_F(GLES2DecoderTest1, ColorMaskValidArgs) { |
- EXPECT_CALL(*gl_, ColorMask(1, 2, 3, 4)); |
SpecializedSetup<ColorMask, 0>(true); |
ColorMask cmd; |
- cmd.Init(1, 2, 3, 4); |
+ cmd.Init(true, true, true, true); |
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd)); |
EXPECT_EQ(GL_NO_ERROR, GetGLError()); |
} |
@@ -642,10 +641,9 @@ TEST_F(GLES2DecoderTest1, DepthFuncValidArgs) { |
} |
TEST_F(GLES2DecoderTest1, DepthMaskValidArgs) { |
- EXPECT_CALL(*gl_, DepthMask(1)); |
SpecializedSetup<DepthMask, 0>(true); |
DepthMask cmd; |
- cmd.Init(1); |
+ cmd.Init(true); |
EXPECT_EQ(error::kNoError, ExecuteCmd(cmd)); |
EXPECT_EQ(GL_NO_ERROR, GetGLError()); |
} |