| Index: ui/gl/test/gl_image_test_template.h
|
| diff --git a/ui/gl/test/gl_image_test_template.h b/ui/gl/test/gl_image_test_template.h
|
| index 99e781bca857c1586f32861eb10c62fc4af8e937..48e5ae3ec1fa6d7a04ff6aa74b66a1a6f69d5016 100644
|
| --- a/ui/gl/test/gl_image_test_template.h
|
| +++ b/ui/gl/test/gl_image_test_template.h
|
| @@ -270,7 +270,7 @@ TYPED_TEST_P(GLImageZeroInitializeTest, ZeroInitialize) {
|
| glBindTexture(target, texture);
|
|
|
| // Bind |image| to |texture|.
|
| - bool rv = image->BindTexImage(target);
|
| + bool rv = image->BindTexImage(target, nullptr);
|
| EXPECT_TRUE(rv);
|
|
|
| // Draw |texture| to viewport.
|
| @@ -318,7 +318,7 @@ TYPED_TEST_P(GLImageBindTest, BindTexImage) {
|
| glBindTexture(target, texture);
|
|
|
| // Bind |image| to |texture|.
|
| - bool rv = image->BindTexImage(target);
|
| + bool rv = image->BindTexImage(target, nullptr);
|
| EXPECT_TRUE(rv);
|
|
|
| glClearColor(0.0f, 0.0f, 1.0f, 1.0f);
|
|
|