| 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 f12bafbe9d527006bcdb357089fa62d8a0ddedea..7d54634a1e71afc6dbb916f9726a43a4af3660c3 100644
|
| --- a/ui/gl/test/gl_image_test_template.h
|
| +++ b/ui/gl/test/gl_image_test_template.h
|
| @@ -251,7 +251,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.
|
| @@ -300,7 +300,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);
|
|
|