Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Side by Side Diff: cc/test/test_in_process_context_provider.cc

Issue 739003002: cc: Test one copy in mask unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/test/layer_tree_pixel_resource_test.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
reveman 2014/11/18 22:20:41 no need to change this but it works without this t
enne (OOO) 2014/11/18 22:23:40 No, it does not. ResourceProvider does not end up
reveman 2014/11/18 22:26:26 I don't think there's a CanUseOneCopyRasterWorkerP
enne (OOO) 2014/11/18 22:29:26 When did it get removed? https://code.google.com/p
reveman 2014/11/18 22:56:57 Oh, it was removed by: https://chromium.googlesou
132 133
133 return capabilities; 134 return capabilities;
134 } 135 }
135 136
136 bool TestInProcessContextProvider::IsContextLost() { return false; } 137 bool TestInProcessContextProvider::IsContextLost() { return false; }
137 138
138 void TestInProcessContextProvider::VerifyContexts() {} 139 void TestInProcessContextProvider::VerifyContexts() {}
139 140
140 void TestInProcessContextProvider::DeleteCachedResources() { 141 void TestInProcessContextProvider::DeleteCachedResources() {
141 if (gr_context_) 142 if (gr_context_)
142 gr_context_->freeGpuResources(); 143 gr_context_->freeGpuResources();
143 } 144 }
144 145
145 bool TestInProcessContextProvider::DestroyedOnMainThread() { return false; } 146 bool TestInProcessContextProvider::DestroyedOnMainThread() { return false; }
146 147
147 void TestInProcessContextProvider::SetLostContextCallback( 148 void TestInProcessContextProvider::SetLostContextCallback(
148 const LostContextCallback& lost_context_callback) {} 149 const LostContextCallback& lost_context_callback) {}
149 150
150 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback( 151 void TestInProcessContextProvider::SetMemoryPolicyChangedCallback(
151 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {} 152 const MemoryPolicyChangedCallback& memory_policy_changed_callback) {}
152 153
153 } // namespace cc 154 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/layer_tree_pixel_resource_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698