| Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest.cc
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest.cc b/gpu/command_buffer/service/gles2_cmd_decoder_unittest.cc
|
| index e72d47c9baca5fe94385ee723922c7e95e3f6115..9cdd550d84bfd95a14898458ff730823cb2b7b5a 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest.cc
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest.cc
|
| @@ -8050,10 +8050,12 @@ TEST_F(GLES2DecoderManualInitTest, AsyncPixelTransfers) {
|
| // Tex(Sub)Image2D upload commands.
|
| AsyncTexImage2DCHROMIUM teximage_cmd;
|
| teximage_cmd.Init(GL_TEXTURE_2D, 0, GL_RGBA, 8, 8, 0, GL_RGBA,
|
| - GL_UNSIGNED_BYTE, kSharedMemoryId, kSharedMemoryOffset);
|
| + GL_UNSIGNED_BYTE, kSharedMemoryId, kSharedMemoryOffset,
|
| + 0, 0, 0);
|
| AsyncTexSubImage2DCHROMIUM texsubimage_cmd;
|
| texsubimage_cmd.Init(GL_TEXTURE_2D, 0, 0, 0, 8, 8, GL_RGBA,
|
| - GL_UNSIGNED_BYTE, kSharedMemoryId, kSharedMemoryOffset);
|
| + GL_UNSIGNED_BYTE, kSharedMemoryId, kSharedMemoryOffset,
|
| + 0, 0, 0);
|
| WaitAsyncTexImage2DCHROMIUM wait_cmd;
|
| wait_cmd.Init(GL_TEXTURE_2D);
|
|
|
| @@ -8239,7 +8241,8 @@ TEST_F(GLES2DecoderManualInitTest, AsyncPixelTransferManager) {
|
|
|
| AsyncTexImage2DCHROMIUM teximage_cmd;
|
| teximage_cmd.Init(GL_TEXTURE_2D, 0, GL_RGBA, 8, 8, 0, GL_RGBA,
|
| - GL_UNSIGNED_BYTE, kSharedMemoryId, kSharedMemoryOffset);
|
| + GL_UNSIGNED_BYTE, kSharedMemoryId, kSharedMemoryOffset,
|
| + 0, 0, 0);
|
|
|
| // No transfer delegate exists initially.
|
| EXPECT_FALSE(
|
|
|