| 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" | |
| 10 #include "gpu/command_buffer/service/buffer_manager.h" | 9 #include "gpu/command_buffer/service/buffer_manager.h" |
| 11 #include "gpu/command_buffer/service/error_state_mock.h" | 10 #include "gpu/command_buffer/service/error_state_mock.h" |
| 12 #include "gpu/command_buffer/service/feature_info.h" | 11 #include "gpu/command_buffer/service/feature_info.h" |
| 13 #include "gpu/command_buffer/service/gpu_service_test.h" | 12 #include "gpu/command_buffer/service/gpu_service_test.h" |
| 14 #include "gpu/command_buffer/service/test_helper.h" | 13 #include "gpu/command_buffer/service/test_helper.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "ui/gl/gl_mock.h" | 15 #include "ui/gl/gl_mock.h" |
| 17 | 16 |
| 18 using ::testing::Pointee; | 17 using ::testing::Pointee; |
| 19 using ::testing::_; | 18 using ::testing::_; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 buffer_manager.Destroy(false); | 220 buffer_manager.Destroy(false); |
| 222 } | 221 } |
| 223 | 222 |
| 224 // TODO(gman): Test ValidateBindings | 223 // TODO(gman): Test ValidateBindings |
| 225 // TODO(gman): Test ValidateBindings with client side arrays. | 224 // TODO(gman): Test ValidateBindings with client side arrays. |
| 226 | 225 |
| 227 } // namespace gles2 | 226 } // namespace gles2 |
| 228 } // namespace gpu | 227 } // namespace gpu |
| 229 | 228 |
| 230 | 229 |
| OLD | NEW |