OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/resources/resource_provider.h" | 5 #include "cc/resources/resource_provider.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 | 9 |
10 #include "base/debug/alias.h" | 10 #include "base/debug/alias.h" |
11 #include "base/hash_tables.h" | 11 #include "base/hash_tables.h" |
12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
14 #include "base/strings/string_split.h" | 14 #include "base/strings/string_split.h" |
15 #include "cc/output/gl_renderer.h" // For the GLC() macro. | 15 #include "cc/output/gl_renderer.h" // For the GLC() macro. |
16 #include "cc/resources/platform_color.h" | 16 #include "cc/resources/platform_color.h" |
17 #include "cc/resources/transferable_resource.h" | 17 #include "cc/resources/transferable_resource.h" |
18 #include "cc/scheduler/texture_uploader.h" | 18 #include "cc/scheduler/texture_uploader.h" |
19 #include "gpu/GLES2/gl2extchromium.h" | 19 #include "gpu/GLES2/gl2extchromium.h" |
20 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" | 20 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
21 #include "third_party/khronos/GLES2/gl2.h" | 21 #include "third_party/khronos/GLES2/gl2.h" |
22 #include "third_party/khronos/GLES2/gl2ext.h" | 22 #include "third_party/khronos/GLES2/gl2ext.h" |
23 #include "ui/gfx/rect.h" | 23 #include "ui/gfx/rect.h" |
24 #include "ui/gfx/vector2d.h" | 24 #include "ui/gfx/vector2d.h" |
25 | 25 |
26 using WebKit::WebGraphicsContext3D; | 26 using WebKit::WebGraphicsContext3D; |
27 | 27 |
28 namespace cc { | 28 namespace cc { |
29 | 29 |
30 namespace { | 30 namespace { |
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 void ResourceProvider::EnableReadLockFences(ResourceProvider::ResourceId id, | 1236 void ResourceProvider::EnableReadLockFences(ResourceProvider::ResourceId id, |
1237 bool enable) { | 1237 bool enable) { |
1238 DCHECK(thread_checker_.CalledOnValidThread()); | 1238 DCHECK(thread_checker_.CalledOnValidThread()); |
1239 ResourceMap::iterator it = resources_.find(id); | 1239 ResourceMap::iterator it = resources_.find(id); |
1240 CHECK(it != resources_.end()); | 1240 CHECK(it != resources_.end()); |
1241 Resource* resource = &it->second; | 1241 Resource* resource = &it->second; |
1242 resource->enable_read_lock_fences = enable; | 1242 resource->enable_read_lock_fences = enable; |
1243 } | 1243 } |
1244 | 1244 |
1245 } // namespace cc | 1245 } // namespace cc |
OLD | NEW |