Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "gpu/command_buffer/service/vertex_attrib_manager.h" | 5 #include "gpu/command_buffer/service/vertex_attrib_manager.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include <memory> |
|
no sievers
2016/04/05 19:02:41
unused
Mostyn Bramley-Moore
2016/04/05 21:35:32
Removed.
| |
| 10 | |
| 10 #include "gpu/command_buffer/service/buffer_manager.h" | 11 #include "gpu/command_buffer/service/buffer_manager.h" |
| 11 #include "gpu/command_buffer/service/error_state_mock.h" | 12 #include "gpu/command_buffer/service/error_state_mock.h" |
| 12 #include "gpu/command_buffer/service/feature_info.h" | 13 #include "gpu/command_buffer/service/feature_info.h" |
| 13 #include "gpu/command_buffer/service/gpu_service_test.h" | 14 #include "gpu/command_buffer/service/gpu_service_test.h" |
| 14 #include "gpu/command_buffer/service/test_helper.h" | 15 #include "gpu/command_buffer/service/test_helper.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "ui/gl/gl_mock.h" | 17 #include "ui/gl/gl_mock.h" |
| 17 | 18 |
| 18 using ::testing::Pointee; | 19 using ::testing::Pointee; |
| 19 using ::testing::_; | 20 using ::testing::_; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 221 buffer_manager.Destroy(false); | 222 buffer_manager.Destroy(false); |
| 222 } | 223 } |
| 223 | 224 |
| 224 // TODO(gman): Test ValidateBindings | 225 // TODO(gman): Test ValidateBindings |
| 225 // TODO(gman): Test ValidateBindings with client side arrays. | 226 // TODO(gman): Test ValidateBindings with client side arrays. |
| 226 | 227 |
| 227 } // namespace gles2 | 228 } // namespace gles2 |
| 228 } // namespace gpu | 229 } // namespace gpu |
| 229 | 230 |
| 230 | 231 |
| OLD | NEW |