| 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 "cc/test/test_in_process_context_provider.h" | 5 #include "cc/test/test_in_process_context_provider.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "gpu/GLES2/gl2extchromium.h" | 8 #include "gpu/GLES2/gl2extchromium.h" |
| 9 #include "gpu/command_buffer/client/gl_in_process_context.h" | 9 #include "gpu/command_buffer/client/gl_in_process_context.h" |
| 10 #include "gpu/command_buffer/client/gles2_implementation.h" | 10 #include "gpu/command_buffer/client/gles2_implementation.h" |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 kOpenGL_GrBackend, reinterpret_cast<GrBackendContext>(interface.get()))); | 122 kOpenGL_GrBackend, reinterpret_cast<GrBackendContext>(interface.get()))); |
| 123 | 123 |
| 124 return gr_context_.get(); | 124 return gr_context_.get(); |
| 125 } | 125 } |
| 126 | 126 |
| 127 ContextProvider::Capabilities | 127 ContextProvider::Capabilities |
| 128 TestInProcessContextProvider::ContextCapabilities() { | 128 TestInProcessContextProvider::ContextCapabilities() { |
| 129 ContextProvider::Capabilities capabilities; | 129 ContextProvider::Capabilities capabilities; |
| 130 capabilities.gpu.image = true; | 130 capabilities.gpu.image = true; |
| 131 capabilities.gpu.texture_rectangle = true; | 131 capabilities.gpu.texture_rectangle = true; |
| 132 capabilities.gpu.sync_query = true; | |
| 133 | 132 |
| 134 return capabilities; | 133 return capabilities; |
| 135 } | 134 } |
| 136 | 135 |
| 137 bool TestInProcessContextProvider::IsContextLost() { return false; } | 136 bool TestInProcessContextProvider::IsContextLost() { return false; } |
| 138 | 137 |
| 139 void TestInProcessContextProvider::VerifyContexts() {} | 138 void TestInProcessContextProvider::VerifyContexts() {} |
| 140 | 139 |
| 141 void TestInProcessContextProvider::DeleteCachedResources() { | 140 void TestInProcessContextProvider::DeleteCachedResources() { |
| 142 if (gr_context_) | 141 if (gr_context_) |
| 143 gr_context_->freeGpuResources(); | 142 gr_context_->freeGpuResources(); |
| 144 } | 143 } |
| 145 | 144 |
| 146 bool TestInProcessContextProvider::DestroyedOnMainThread() { return false; } | 145 bool TestInProcessContextProvider::DestroyedOnMainThread() { return false; } |
| 147 | 146 |
| 148 void TestInProcessContextProvider::SetLostContextCallback( | 147 void TestInProcessContextProvider::SetLostContextCallback( |
| 149 const LostContextCallback& lost_context_callback) {} | 148 const LostContextCallback& lost_context_callback) {} |
| 150 | 149 |
| 151 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback( | 150 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback( |
| 152 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {} | 151 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {} |
| 153 | 152 |
| 154 } // namespace cc | 153 } // namespace cc |
| OLD | NEW |