| Index: components/test_runner/test_plugin.cc
|
| diff --git a/components/test_runner/test_plugin.cc b/components/test_runner/test_plugin.cc
|
| index dcd3beb33dd56744bed1247131e0904ed7d90228..f98e0a8afd982e8595490d73aad8dc1518e7acbd 100644
|
| --- a/components/test_runner/test_plugin.cc
|
| +++ b/components/test_runner/test_plugin.cc
|
| @@ -491,8 +491,8 @@ void TestPlugin::DrawPrimitive() {
|
| // Bind primitive vertices.
|
| gl_->BindBuffer(GL_ARRAY_BUFFER, scene_.vbo);
|
| gl_->EnableVertexAttribArray(scene_.position_location);
|
| - context_->vertexAttribPointer(
|
| - scene_.position_location, 3, GL_FLOAT, GL_FALSE, 0, 0);
|
| + gl_->VertexAttribPointer(scene_.position_location, 3, GL_FLOAT, GL_FALSE, 0,
|
| + nullptr);
|
| gl_->DrawArrays(GL_TRIANGLES, 0, 3);
|
| }
|
|
|
|
|