diff options
Diffstat (limited to 'ppapi/tests/test_graphics_3d.cc')
-rw-r--r-- | ppapi/tests/test_graphics_3d.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/tests/test_graphics_3d.cc b/ppapi/tests/test_graphics_3d.cc index 9f409e7..b54ce3d 100644 --- a/ppapi/tests/test_graphics_3d.cc +++ b/ppapi/tests/test_graphics_3d.cc @@ -33,7 +33,7 @@ std::string TestGraphics3D::TestFrame() { PP_GRAPHICS3DATTRIB_HEIGHT, height, PP_GRAPHICS3DATTRIB_NONE }; - pp::Graphics3D context(*instance_, pp::Graphics3D(), attribs); + pp::Graphics3D context(instance_, attribs); ASSERT_FALSE(context.is_null()); // Clear color buffer to opaque red. |