Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc |
=================================================================== |
--- gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc (revision 98533) |
+++ gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc (working copy) |
@@ -55,8 +55,7 @@ |
false, // has stencil |
true, // request alpha |
true, // request depth |
- false, // request stencil |
- true); // bind generates resource |
+ false); // request stencil |
} |
void GLES2DecoderTestBase::InitDecoder( |
@@ -66,12 +65,11 @@ |
bool has_stencil, |
bool request_alpha, |
bool request_depth, |
- bool request_stencil, |
- bool bind_generates_resource) { |
+ bool request_stencil) { |
gl_.reset(new StrictMock<MockGLInterface>()); |
::gfx::GLInterface::SetGLInterface(gl_.get()); |
surface_manager_.reset(new StrictMock<MockSurfaceManager>); |
- group_ = ContextGroup::Ref(new ContextGroup(bind_generates_resource)); |
+ group_ = ContextGroup::Ref(new ContextGroup()); |
InSequence sequence; |