| 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 "cc/resources/platform_color.h" | 8 #include "cc/resources/platform_color.h" |
| 9 #include "gpu/GLES2/gl2extchromium.h" | 9 #include "gpu/GLES2/gl2extchromium.h" |
| 10 #include "gpu/command_buffer/client/gl_in_process_context.h" | 10 #include "gpu/command_buffer/client/gl_in_process_context.h" |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 base::Lock* TestInProcessContextProvider::GetLock() { | 136 base::Lock* TestInProcessContextProvider::GetLock() { |
| 137 return &context_lock_; | 137 return &context_lock_; |
| 138 } | 138 } |
| 139 | 139 |
| 140 ContextProvider::Capabilities | 140 ContextProvider::Capabilities |
| 141 TestInProcessContextProvider::ContextCapabilities() { | 141 TestInProcessContextProvider::ContextCapabilities() { |
| 142 ContextProvider::Capabilities capabilities; | 142 ContextProvider::Capabilities capabilities; |
| 143 capabilities.gpu.image = true; | 143 capabilities.gpu.image = true; |
| 144 capabilities.gpu.texture_rectangle = true; | 144 capabilities.gpu.texture_rectangle = true; |
| 145 capabilities.gpu.sync_query = true; |
| 145 | 146 |
| 146 switch (PlatformColor::Format()) { | 147 switch (PlatformColor::Format()) { |
| 147 case PlatformColor::SOURCE_FORMAT_RGBA8: | 148 case PlatformColor::SOURCE_FORMAT_RGBA8: |
| 148 capabilities.gpu.texture_format_bgra8888 = false; | 149 capabilities.gpu.texture_format_bgra8888 = false; |
| 149 break; | 150 break; |
| 150 case PlatformColor::SOURCE_FORMAT_BGRA8: | 151 case PlatformColor::SOURCE_FORMAT_BGRA8: |
| 151 capabilities.gpu.texture_format_bgra8888 = true; | 152 capabilities.gpu.texture_format_bgra8888 = true; |
| 152 break; | 153 break; |
| 153 } | 154 } |
| 154 | 155 |
| 155 return capabilities; | 156 return capabilities; |
| 156 } | 157 } |
| 157 | 158 |
| 158 void TestInProcessContextProvider::VerifyContexts() {} | 159 void TestInProcessContextProvider::VerifyContexts() {} |
| 159 | 160 |
| 160 void TestInProcessContextProvider::DeleteCachedResources() { | 161 void TestInProcessContextProvider::DeleteCachedResources() { |
| 161 if (gr_context_) | 162 if (gr_context_) |
| 162 gr_context_->freeGpuResources(); | 163 gr_context_->freeGpuResources(); |
| 163 } | 164 } |
| 164 | 165 |
| 165 bool TestInProcessContextProvider::DestroyedOnMainThread() { return false; } | 166 bool TestInProcessContextProvider::DestroyedOnMainThread() { return false; } |
| 166 | 167 |
| 167 void TestInProcessContextProvider::SetLostContextCallback( | 168 void TestInProcessContextProvider::SetLostContextCallback( |
| 168 const LostContextCallback& lost_context_callback) {} | 169 const LostContextCallback& lost_context_callback) {} |
| 169 | 170 |
| 170 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback( | 171 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback( |
| 171 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {} | 172 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {} |
| 172 | 173 |
| 173 } // namespace cc | 174 } // namespace cc |
| OLD | NEW |