| Index: gpu/command_buffer/service/gl_state_restorer_impl.cc
|
| diff --git a/gpu/command_buffer/service/gl_state_restorer_impl.cc b/gpu/command_buffer/service/gl_state_restorer_impl.cc
|
| index 7b3c5ed384148318cde872d3a1c343ccb488feab..8c0f9925da13b311ee76b40d801bdada8f6334d8 100644
|
| --- a/gpu/command_buffer/service/gl_state_restorer_impl.cc
|
| +++ b/gpu/command_buffer/service/gl_state_restorer_impl.cc
|
| @@ -21,9 +21,10 @@ bool GLStateRestorerImpl::IsInitialized() {
|
| return decoder_->initialized();
|
| }
|
|
|
| -void GLStateRestorerImpl::RestoreState() {
|
| +void GLStateRestorerImpl::RestoreState(
|
| + const gfx::DirtyTextureState* dirty_texture_state) {
|
| DCHECK(decoder_.get());
|
| - decoder_->RestoreState();
|
| + decoder_->RestoreState(dirty_texture_state);
|
| }
|
|
|
| void GLStateRestorerImpl::RestoreAllTextureUnitBindings() {
|
|
|