OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stdio.h> | 5 #include <stdio.h> |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "gpu/command_buffer/client/gl_in_process_context.h" | 12 #include "gpu/command_buffer/client/gl_in_process_context.h" |
13 #include "gpu/command_buffer/client/gles2_implementation.h" | 13 #include "gpu/command_buffer/client/gles2_implementation.h" |
| 14 #include "gpu/command_buffer/client/shared_memory_limits.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "ui/gl/gl_surface.h" | 16 #include "ui/gl/gl_surface.h" |
16 | 17 |
17 namespace { | 18 namespace { |
18 | 19 |
19 class ContextTestBase : public testing::Test { | 20 class ContextTestBase : public testing::Test { |
20 public: | 21 public: |
21 void SetUp() override { | 22 void SetUp() override { |
22 gpu::gles2::ContextCreationAttribHelper attributes; | 23 gpu::gles2::ContextCreationAttribHelper attributes; |
23 attributes.alpha_size = 8; | 24 attributes.alpha_size = 8; |
24 attributes.depth_size = 24; | 25 attributes.depth_size = 24; |
25 attributes.red_size = 8; | 26 attributes.red_size = 8; |
26 attributes.green_size = 8; | 27 attributes.green_size = 8; |
27 attributes.blue_size = 8; | 28 attributes.blue_size = 8; |
28 attributes.stencil_size = 8; | 29 attributes.stencil_size = 8; |
29 attributes.samples = 4; | 30 attributes.samples = 4; |
30 attributes.sample_buffers = 1; | 31 attributes.sample_buffers = 1; |
31 attributes.bind_generates_resource = false; | 32 attributes.bind_generates_resource = false; |
32 | 33 |
33 context_.reset(gpu::GLInProcessContext::Create( | 34 context_.reset(gpu::GLInProcessContext::Create( |
34 nullptr, /* service */ | 35 nullptr, /* service */ |
35 nullptr, /* surface */ | 36 nullptr, /* surface */ |
36 true, /* offscreen */ | 37 true, /* offscreen */ |
37 gfx::kNullAcceleratedWidget, /* window */ | 38 gfx::kNullAcceleratedWidget, /* window */ |
38 gfx::Size(1, 1), /* size */ | 39 gfx::Size(1, 1), /* size */ |
39 nullptr, /* share_context */ | 40 nullptr, /* share_context */ |
40 attributes, gfx::PreferDiscreteGpu, | 41 attributes, gfx::PreferDiscreteGpu, gpu::SharedMemoryLimits(), |
41 ::gpu::GLInProcessContextSharedMemoryLimits(), | |
42 nullptr, /* gpu_memory_buffer_manager */ | 42 nullptr, /* gpu_memory_buffer_manager */ |
43 nullptr /* image_factory */)); | 43 nullptr /* image_factory */)); |
44 gl_ = context_->GetImplementation(); | 44 gl_ = context_->GetImplementation(); |
45 context_support_ = context_->GetImplementation(); | 45 context_support_ = context_->GetImplementation(); |
46 } | 46 } |
47 | 47 |
48 void TearDown() override { context_.reset(NULL); } | 48 void TearDown() override { context_.reset(NULL); } |
49 | 49 |
50 protected: | 50 protected: |
51 gpu::gles2::GLES2Interface* gl_; | 51 gpu::gles2::GLES2Interface* gl_; |
52 gpu::ContextSupport* context_support_; | 52 gpu::ContextSupport* context_support_; |
53 | 53 |
54 private: | 54 private: |
55 std::unique_ptr<gpu::GLInProcessContext> context_; | 55 std::unique_ptr<gpu::GLInProcessContext> context_; |
56 }; | 56 }; |
57 | 57 |
58 } // namespace | 58 } // namespace |
59 | 59 |
60 // Include the actual tests. | 60 // Include the actual tests. |
61 #define CONTEXT_TEST_F TEST_F | 61 #define CONTEXT_TEST_F TEST_F |
62 #include "content/common/gpu/client/gpu_context_tests.h" | 62 #include "content/common/gpu/client/gpu_context_tests.h" |
OLD | NEW |