| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ppapi/shared_impl/graphics_3d_impl.h" | 5 #include "ppapi/shared_impl/graphics_3d_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "gpu/command_buffer/client/gles2_cmd_helper.h" | 8 #include "gpu/command_buffer/client/gles2_cmd_helper.h" |
| 9 #include "gpu/command_buffer/client/gles2_implementation.h" | 9 #include "gpu/command_buffer/client/gles2_implementation.h" |
| 10 #include "ppapi/c/pp_errors.h" | 10 #include "ppapi/c/pp_errors.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 DCHECK(command_buffer); | 128 DCHECK(command_buffer); |
| 129 command_buffer->DestroyTransferBuffer(transfer_buffer_id_); | 129 command_buffer->DestroyTransferBuffer(transfer_buffer_id_); |
| 130 transfer_buffer_id_ = -1; | 130 transfer_buffer_id_ = -1; |
| 131 } | 131 } |
| 132 | 132 |
| 133 gles2_helper_.reset(); | 133 gles2_helper_.reset(); |
| 134 } | 134 } |
| 135 | 135 |
| 136 } // namespace ppapi | 136 } // namespace ppapi |
| 137 | 137 |
| OLD | NEW |