| 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 "gpu/command_buffer/service/texture_manager.h" | 5 #include "gpu/command_buffer/service/texture_manager.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "gpu/GLES2/gles2_command_buffer.h" | |
| 9 #include "gpu/command_buffer/common/gl_mock.h" | 8 #include "gpu/command_buffer/common/gl_mock.h" |
| 10 #include "gpu/command_buffer/service/feature_info.h" | 9 #include "gpu/command_buffer/service/feature_info.h" |
| 11 #include "gpu/command_buffer/service/test_helper.h" | 10 #include "gpu/command_buffer/service/test_helper.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 12 |
| 14 using ::testing::Pointee; | 13 using ::testing::Pointee; |
| 15 using ::testing::_; | 14 using ::testing::_; |
| 16 | 15 |
| 17 namespace gpu { | 16 namespace gpu { |
| 18 namespace gles2 { | 17 namespace gles2 { |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 manager.SetInfoTarget(info, GL_TEXTURE_EXTERNAL_OES); | 694 manager.SetInfoTarget(info, GL_TEXTURE_EXTERNAL_OES); |
| 696 EXPECT_EQ(static_cast<GLenum>(GL_TEXTURE_EXTERNAL_OES), info->target()); | 695 EXPECT_EQ(static_cast<GLenum>(GL_TEXTURE_EXTERNAL_OES), info->target()); |
| 697 EXPECT_FALSE(info->CanGenerateMipmaps(&feature_info)); | 696 EXPECT_FALSE(info->CanGenerateMipmaps(&feature_info)); |
| 698 manager.Destroy(false); | 697 manager.Destroy(false); |
| 699 } | 698 } |
| 700 | 699 |
| 701 } // namespace gles2 | 700 } // namespace gles2 |
| 702 } // namespace gpu | 701 } // namespace gpu |
| 703 | 702 |
| 704 | 703 |
| OLD | NEW |