Blink roll 25b6bd3a7a131ffe68d809546ad1a20707915cdc:3a503f41ae42e5b79cfcd2ff10e65afde...
[chromium-blink-merge.git] / cc / resources / resource_provider.h
blobc09a13edab031ca0cdd970f89a4da620c12cd876
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
3 // found in the LICENSE file.
5 #ifndef CC_RESOURCES_RESOURCE_PROVIDER_H_
6 #define CC_RESOURCES_RESOURCE_PROVIDER_H_
8 #include <deque>
9 #include <set>
10 #include <string>
11 #include <utility>
12 #include <vector>
14 #include "base/basictypes.h"
15 #include "base/callback.h"
16 #include "base/containers/hash_tables.h"
17 #include "base/memory/linked_ptr.h"
18 #include "base/memory/scoped_ptr.h"
19 #include "base/threading/thread_checker.h"
20 #include "cc/base/cc_export.h"
21 #include "cc/output/context_provider.h"
22 #include "cc/output/output_surface.h"
23 #include "cc/resources/release_callback_impl.h"
24 #include "cc/resources/resource_format.h"
25 #include "cc/resources/return_callback.h"
26 #include "cc/resources/shared_bitmap.h"
27 #include "cc/resources/single_release_callback_impl.h"
28 #include "cc/resources/texture_mailbox.h"
29 #include "cc/resources/transferable_resource.h"
30 #include "third_party/khronos/GLES2/gl2.h"
31 #include "third_party/khronos/GLES2/gl2ext.h"
32 #include "third_party/skia/include/core/SkBitmap.h"
33 #include "third_party/skia/include/core/SkCanvas.h"
34 #include "ui/gfx/geometry/size.h"
36 class GrContext;
38 namespace gpu {
39 class GpuMemoryBufferManager;
40 namespace gles {
41 class GLES2Interface;
45 namespace gfx {
46 class GpuMemoryBuffer;
47 class Rect;
48 class Vector2d;
51 namespace cc {
52 class BlockingTaskRunner;
53 class IdAllocator;
54 class SharedBitmap;
55 class SharedBitmapManager;
56 class TextureUploader;
58 // This class is not thread-safe and can only be called from the thread it was
59 // created on (in practice, the impl thread).
60 class CC_EXPORT ResourceProvider {
61 private:
62 struct Resource;
64 public:
65 typedef unsigned ResourceId;
66 typedef std::vector<ResourceId> ResourceIdArray;
67 typedef std::set<ResourceId> ResourceIdSet;
68 typedef base::hash_map<ResourceId, ResourceId> ResourceIdMap;
69 enum TextureHint {
70 TextureHintDefault = 0x0,
71 TextureHintImmutable = 0x1,
72 TextureHintFramebuffer = 0x2,
73 TextureHintImmutableFramebuffer =
74 TextureHintImmutable | TextureHintFramebuffer
76 enum ResourceType {
77 InvalidType = 0,
78 GLTexture = 1,
79 Bitmap,
82 static scoped_ptr<ResourceProvider> Create(
83 OutputSurface* output_surface,
84 SharedBitmapManager* shared_bitmap_manager,
85 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
86 BlockingTaskRunner* blocking_main_thread_task_runner,
87 int highp_threshold_min,
88 bool use_rgba_4444_texture_format,
89 size_t id_allocation_chunk_size);
90 virtual ~ResourceProvider();
92 void InitializeSoftware();
93 void InitializeGL();
95 void DidLoseOutputSurface() { lost_output_surface_ = true; }
97 int max_texture_size() const { return max_texture_size_; }
98 ResourceFormat memory_efficient_texture_format() const {
99 return use_rgba_4444_texture_format_ ? RGBA_4444 : best_texture_format_;
101 ResourceFormat best_texture_format() const { return best_texture_format_; }
102 bool use_sync_query() const { return use_sync_query_; }
103 size_t num_resources() const { return resources_.size(); }
105 // Checks whether a resource is in use by a consumer.
106 bool InUseByConsumer(ResourceId id);
108 bool IsLost(ResourceId id);
109 bool AllowOverlay(ResourceId id);
111 // Producer interface.
113 ResourceType default_resource_type() const { return default_resource_type_; }
114 ResourceType GetResourceType(ResourceId id);
116 // Creates a resource of the default resource type.
117 ResourceId CreateResource(const gfx::Size& size,
118 GLint wrap_mode,
119 TextureHint hint,
120 ResourceFormat format);
122 // Creates a resource which is tagged as being managed for GPU memory
123 // accounting purposes.
124 ResourceId CreateManagedResource(const gfx::Size& size,
125 GLenum target,
126 GLint wrap_mode,
127 TextureHint hint,
128 ResourceFormat format);
130 // You can also explicitly create a specific resource type.
131 ResourceId CreateGLTexture(const gfx::Size& size,
132 GLenum target,
133 GLenum texture_pool,
134 GLint wrap_mode,
135 TextureHint hint,
136 ResourceFormat format);
138 ResourceId CreateBitmap(const gfx::Size& size, GLint wrap_mode);
139 // Wraps an IOSurface into a GL resource.
140 ResourceId CreateResourceFromIOSurface(const gfx::Size& size,
141 unsigned io_surface_id);
143 // Wraps an external texture mailbox into a GL resource.
144 ResourceId CreateResourceFromTextureMailbox(
145 const TextureMailbox& mailbox,
146 scoped_ptr<SingleReleaseCallbackImpl> release_callback_impl);
148 void DeleteResource(ResourceId id);
150 // Update pixels from image, copying source_rect (in image) to dest_offset (in
151 // the resource).
152 void SetPixels(ResourceId id,
153 const uint8_t* image,
154 const gfx::Rect& image_rect,
155 const gfx::Rect& source_rect,
156 const gfx::Vector2d& dest_offset);
158 // Check upload status.
159 size_t NumBlockingUploads();
160 void MarkPendingUploadsAsNonBlocking();
161 size_t EstimatedUploadsPerTick();
162 void FlushUploads();
163 void ReleaseCachedData();
164 base::TimeTicks EstimatedUploadCompletionTime(size_t uploads_per_tick);
166 // Only flush the command buffer if supported.
167 // Returns true if the shallow flush occurred, false otherwise.
168 bool ShallowFlushIfSupported();
170 // Creates accounting for a child. Returns a child ID.
171 int CreateChild(const ReturnCallback& return_callback);
173 // Destroys accounting for the child, deleting all accounted resources.
174 void DestroyChild(int child);
176 // Gets the child->parent resource ID map.
177 const ResourceIdMap& GetChildToParentMap(int child) const;
179 // Prepares resources to be transfered to the parent, moving them to
180 // mailboxes and serializing meta-data into TransferableResources.
181 // Resources are not removed from the ResourceProvider, but are marked as
182 // "in use".
183 void PrepareSendToParent(const ResourceIdArray& resources,
184 TransferableResourceArray* transferable_resources);
186 // Receives resources from a child, moving them from mailboxes. Resource IDs
187 // passed are in the child namespace, and will be translated to the parent
188 // namespace, added to the child->parent map.
189 // This adds the resources to the working set in the ResourceProvider without
190 // declaring which resources are in use. Use DeclareUsedResourcesFromChild
191 // after calling this method to do that. All calls to ReceiveFromChild should
192 // be followed by a DeclareUsedResourcesFromChild.
193 // NOTE: if the sync_point is set on any TransferableResource, this will
194 // wait on it.
195 void ReceiveFromChild(
196 int child, const TransferableResourceArray& transferable_resources);
198 // Once a set of resources have been received, they may or may not be used.
199 // This declares what set of resources are currently in use from the child,
200 // releasing any other resources back to the child.
201 void DeclareUsedResourcesFromChild(
202 int child,
203 const ResourceIdArray& resources_from_child);
205 // Receives resources from the parent, moving them from mailboxes. Resource
206 // IDs passed are in the child namespace.
207 // NOTE: if the sync_point is set on any TransferableResource, this will
208 // wait on it.
209 void ReceiveReturnsFromParent(
210 const ReturnedResourceArray& transferable_resources);
212 // The following lock classes are part of the ResourceProvider API and are
213 // needed to read and write the resource contents. The user must ensure
214 // that they only use GL locks on GL resources, etc, and this is enforced
215 // by assertions.
216 class CC_EXPORT ScopedReadLockGL {
217 public:
218 ScopedReadLockGL(ResourceProvider* resource_provider,
219 ResourceProvider::ResourceId resource_id);
220 virtual ~ScopedReadLockGL();
222 unsigned texture_id() const { return texture_id_; }
224 protected:
225 ResourceProvider* resource_provider_;
226 ResourceProvider::ResourceId resource_id_;
228 private:
229 unsigned texture_id_;
231 DISALLOW_COPY_AND_ASSIGN(ScopedReadLockGL);
234 class CC_EXPORT ScopedSamplerGL : public ScopedReadLockGL {
235 public:
236 ScopedSamplerGL(ResourceProvider* resource_provider,
237 ResourceProvider::ResourceId resource_id,
238 GLenum filter);
239 ScopedSamplerGL(ResourceProvider* resource_provider,
240 ResourceProvider::ResourceId resource_id,
241 GLenum unit,
242 GLenum filter);
243 ~ScopedSamplerGL() override;
245 GLenum target() const { return target_; }
247 private:
248 GLenum unit_;
249 GLenum target_;
251 DISALLOW_COPY_AND_ASSIGN(ScopedSamplerGL);
254 class CC_EXPORT ScopedWriteLockGL {
255 public:
256 ScopedWriteLockGL(ResourceProvider* resource_provider,
257 ResourceProvider::ResourceId resource_id);
258 ~ScopedWriteLockGL();
260 unsigned texture_id() const { return texture_id_; }
262 private:
263 ResourceProvider* resource_provider_;
264 ResourceProvider::Resource* resource_;
265 unsigned texture_id_;
267 DISALLOW_COPY_AND_ASSIGN(ScopedWriteLockGL);
270 class CC_EXPORT ScopedReadLockSoftware {
271 public:
272 ScopedReadLockSoftware(ResourceProvider* resource_provider,
273 ResourceProvider::ResourceId resource_id);
274 ~ScopedReadLockSoftware();
276 const SkBitmap* sk_bitmap() const {
277 DCHECK(valid());
278 return &sk_bitmap_;
280 GLint wrap_mode() const { return wrap_mode_; }
282 bool valid() const { return !!sk_bitmap_.getPixels(); }
284 private:
285 ResourceProvider* resource_provider_;
286 ResourceProvider::ResourceId resource_id_;
287 SkBitmap sk_bitmap_;
288 GLint wrap_mode_;
290 DISALLOW_COPY_AND_ASSIGN(ScopedReadLockSoftware);
293 class CC_EXPORT ScopedWriteLockSoftware {
294 public:
295 ScopedWriteLockSoftware(ResourceProvider* resource_provider,
296 ResourceProvider::ResourceId resource_id);
297 ~ScopedWriteLockSoftware();
299 SkCanvas* sk_canvas() { return sk_canvas_.get(); }
300 bool valid() const { return !!sk_bitmap_.getPixels(); }
302 private:
303 ResourceProvider* resource_provider_;
304 ResourceProvider::Resource* resource_;
305 SkBitmap sk_bitmap_;
306 scoped_ptr<SkCanvas> sk_canvas_;
307 base::ThreadChecker thread_checker_;
309 DISALLOW_COPY_AND_ASSIGN(ScopedWriteLockSoftware);
312 class CC_EXPORT ScopedWriteLockGpuMemoryBuffer {
313 public:
314 ScopedWriteLockGpuMemoryBuffer(ResourceProvider* resource_provider,
315 ResourceProvider::ResourceId resource_id);
316 ~ScopedWriteLockGpuMemoryBuffer();
318 gfx::GpuMemoryBuffer* GetGpuMemoryBuffer();
320 private:
321 ResourceProvider* resource_provider_;
322 ResourceProvider::Resource* resource_;
323 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_;
324 gfx::GpuMemoryBuffer* gpu_memory_buffer_;
325 gfx::Size size_;
326 ResourceFormat format_;
327 base::ThreadChecker thread_checker_;
329 DISALLOW_COPY_AND_ASSIGN(ScopedWriteLockGpuMemoryBuffer);
332 class CC_EXPORT ScopedWriteLockGr {
333 public:
334 ScopedWriteLockGr(ResourceProvider* resource_provider,
335 ResourceProvider::ResourceId resource_id);
336 ~ScopedWriteLockGr();
338 SkSurface* GetSkSurface(bool use_distance_field_text,
339 bool can_use_lcd_text);
341 private:
342 bool SurfaceHasMatchingProperties(bool use_distance_field_text,
343 bool can_use_lcd_text) const;
345 ResourceProvider* resource_provider_;
346 ResourceProvider::Resource* resource_;
347 base::ThreadChecker thread_checker_;
349 DISALLOW_COPY_AND_ASSIGN(ScopedWriteLockGr);
352 class Fence : public base::RefCounted<Fence> {
353 public:
354 Fence() {}
356 virtual void Set() = 0;
357 virtual bool HasPassed() = 0;
358 virtual void Wait() = 0;
360 protected:
361 friend class base::RefCounted<Fence>;
362 virtual ~Fence() {}
364 private:
365 DISALLOW_COPY_AND_ASSIGN(Fence);
368 class SynchronousFence : public ResourceProvider::Fence {
369 public:
370 explicit SynchronousFence(gpu::gles2::GLES2Interface* gl);
372 // Overridden from Fence:
373 void Set() override;
374 bool HasPassed() override;
375 void Wait() override;
377 // Returns true if fence has been set but not yet synchornized.
378 bool has_synchronized() const { return has_synchronized_; }
380 private:
381 ~SynchronousFence() override;
383 void Synchronize();
385 gpu::gles2::GLES2Interface* gl_;
386 bool has_synchronized_;
388 DISALLOW_COPY_AND_ASSIGN(SynchronousFence);
391 // Acquire pixel buffer for resource. The pixel buffer can be used to
392 // set resource pixels without performing unnecessary copying.
393 void AcquirePixelBuffer(ResourceId resource);
394 void ReleasePixelBuffer(ResourceId resource);
395 // Map/unmap the acquired pixel buffer.
396 uint8_t* MapPixelBuffer(ResourceId id, int* stride);
397 void UnmapPixelBuffer(ResourceId id);
398 // Asynchronously update pixels from acquired pixel buffer.
399 void BeginSetPixels(ResourceId id);
400 void ForceSetPixelsToComplete(ResourceId id);
401 bool DidSetPixelsComplete(ResourceId id);
403 // For tests only! This prevents detecting uninitialized reads.
404 // Use SetPixels or LockForWrite to allocate implicitly.
405 void AllocateForTesting(ResourceId id);
407 // For tests only!
408 void CreateForTesting(ResourceId id);
410 GLenum TargetForTesting(ResourceId id);
412 // Sets the current read fence. If a resource is locked for read
413 // and has read fences enabled, the resource will not allow writes
414 // until this fence has passed.
415 void SetReadLockFence(Fence* fence) { current_read_lock_fence_ = fence; }
417 // Indicates if we can currently lock this resource for write.
418 bool CanLockForWrite(ResourceId id);
420 // Copy pixels from source to destination.
421 void CopyResource(ResourceId source_id, ResourceId dest_id);
423 void WaitSyncPointIfNeeded(ResourceId id);
425 void WaitReadLockIfNeeded(ResourceId id);
427 static GLint GetActiveTextureUnit(gpu::gles2::GLES2Interface* gl);
429 private:
430 struct Resource {
431 enum Origin { Internal, External, Delegated };
433 Resource();
434 ~Resource();
435 Resource(unsigned texture_id,
436 const gfx::Size& size,
437 Origin origin,
438 GLenum target,
439 GLenum filter,
440 GLenum texture_pool,
441 GLint wrap_mode,
442 TextureHint hint,
443 ResourceFormat format);
444 Resource(uint8_t* pixels,
445 SharedBitmap* bitmap,
446 const gfx::Size& size,
447 Origin origin,
448 GLenum filter,
449 GLint wrap_mode);
450 Resource(const SharedBitmapId& bitmap_id,
451 const gfx::Size& size,
452 Origin origin,
453 GLenum filter,
454 GLint wrap_mode);
456 int child_id;
457 unsigned gl_id;
458 // Pixel buffer used for set pixels without unnecessary copying.
459 unsigned gl_pixel_buffer_id;
460 // Query used to determine when asynchronous set pixels complete.
461 unsigned gl_upload_query_id;
462 // Query used to determine when read lock fence has passed.
463 unsigned gl_read_lock_query_id;
464 TextureMailbox mailbox;
465 ReleaseCallbackImpl release_callback_impl;
466 uint8_t* pixels;
467 int lock_for_read_count;
468 int imported_count;
469 int exported_count;
470 bool dirty_image : 1;
471 bool locked_for_write : 1;
472 bool lost : 1;
473 bool marked_for_deletion : 1;
474 bool pending_set_pixels : 1;
475 bool set_pixels_completion_forced : 1;
476 bool allocated : 1;
477 bool read_lock_fences_enabled : 1;
478 bool has_shared_bitmap_id : 1;
479 bool allow_overlay : 1;
480 scoped_refptr<Fence> read_lock_fence;
481 gfx::Size size;
482 Origin origin;
483 GLenum target;
484 // TODO(skyostil): Use a separate sampler object for filter state.
485 GLenum original_filter;
486 GLenum filter;
487 unsigned image_id;
488 unsigned bound_image_id;
489 GLenum texture_pool;
490 GLint wrap_mode;
491 TextureHint hint;
492 ResourceType type;
493 ResourceFormat format;
494 SharedBitmapId shared_bitmap_id;
495 SharedBitmap* shared_bitmap;
496 gfx::GpuMemoryBuffer* gpu_memory_buffer;
497 skia::RefPtr<SkSurface> sk_surface;
499 typedef base::hash_map<ResourceId, Resource> ResourceMap;
501 static bool CompareResourceMapIteratorsByChildId(
502 const std::pair<ReturnedResource, ResourceMap::iterator>& a,
503 const std::pair<ReturnedResource, ResourceMap::iterator>& b);
505 struct Child {
506 Child();
507 ~Child();
509 ResourceIdMap child_to_parent_map;
510 ResourceIdMap parent_to_child_map;
511 ReturnCallback return_callback;
512 ResourceIdSet in_use_resources;
513 bool marked_for_deletion;
515 typedef base::hash_map<int, Child> ChildMap;
517 bool ReadLockFenceHasPassed(const Resource* resource) {
518 return !resource->read_lock_fence.get() ||
519 resource->read_lock_fence->HasPassed();
522 ResourceProvider(OutputSurface* output_surface,
523 SharedBitmapManager* shared_bitmap_manager,
524 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
525 BlockingTaskRunner* blocking_main_thread_task_runner,
526 int highp_threshold_min,
527 bool use_rgba_4444_texture_format,
528 size_t id_allocation_chunk_size);
530 void CleanUpGLIfNeeded();
532 Resource* GetResource(ResourceId id);
533 const Resource* LockForRead(ResourceId id);
534 void UnlockForRead(ResourceId id);
535 Resource* LockForWrite(ResourceId id);
536 void UnlockForWrite(Resource* resource);
538 static void PopulateSkBitmapWithResource(SkBitmap* sk_bitmap,
539 const Resource* resource);
541 void TransferResource(gpu::gles2::GLES2Interface* gl,
542 ResourceId id,
543 TransferableResource* resource);
544 enum DeleteStyle {
545 Normal,
546 ForShutdown,
548 void DeleteResourceInternal(ResourceMap::iterator it, DeleteStyle style);
549 void DeleteAndReturnUnusedResourcesToChild(ChildMap::iterator child_it,
550 DeleteStyle style,
551 const ResourceIdArray& unused);
552 void DestroyChildInternal(ChildMap::iterator it, DeleteStyle style);
553 void LazyCreate(Resource* resource);
554 void LazyAllocate(Resource* resource);
556 void BindImageForSampling(Resource* resource);
557 // Binds the given GL resource to a texture target for sampling using the
558 // specified filter for both minification and magnification. Returns the
559 // texture target used. The resource must be locked for reading.
560 GLenum BindForSampling(ResourceId resource_id, GLenum unit, GLenum filter);
562 // Returns NULL if the output_surface_ does not have a ContextProvider.
563 gpu::gles2::GLES2Interface* ContextGL() const;
564 class GrContext* GrContext() const;
566 OutputSurface* output_surface_;
567 SharedBitmapManager* shared_bitmap_manager_;
568 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_;
569 BlockingTaskRunner* blocking_main_thread_task_runner_;
570 bool lost_output_surface_;
571 int highp_threshold_min_;
572 ResourceId next_id_;
573 ResourceMap resources_;
574 int next_child_;
575 ChildMap children_;
577 ResourceType default_resource_type_;
578 bool use_texture_storage_ext_;
579 bool use_texture_format_bgra_;
580 bool use_texture_usage_hint_;
581 bool use_compressed_texture_etc1_;
582 scoped_ptr<TextureUploader> texture_uploader_;
583 int max_texture_size_;
584 ResourceFormat best_texture_format_;
586 base::ThreadChecker thread_checker_;
588 scoped_refptr<Fence> current_read_lock_fence_;
589 bool use_rgba_4444_texture_format_;
591 const size_t id_allocation_chunk_size_;
592 scoped_ptr<IdAllocator> texture_id_allocator_;
593 scoped_ptr<IdAllocator> buffer_id_allocator_;
595 bool use_sync_query_;
596 // Fence used for CopyResource if CHROMIUM_sync_query is not supported.
597 scoped_refptr<SynchronousFence> synchronous_fence_;
599 DISALLOW_COPY_AND_ASSIGN(ResourceProvider);
602 // TODO(epenner): Move these format conversions to resource_format.h
603 // once that builds on mac (npapi.h currently #includes OpenGL.h).
604 inline unsigned BitsPerPixel(ResourceFormat format) {
605 switch (format) {
606 case BGRA_8888:
607 case RGBA_8888:
608 return 32;
609 case RGBA_4444:
610 case RGB_565:
611 return 16;
612 case ALPHA_8:
613 case LUMINANCE_8:
614 return 8;
615 case ETC1:
616 return 4;
618 NOTREACHED();
619 return 0;
622 inline GLenum GLDataType(ResourceFormat format) {
623 DCHECK_LE(format, RESOURCE_FORMAT_MAX);
624 static const unsigned format_gl_data_type[RESOURCE_FORMAT_MAX + 1] = {
625 GL_UNSIGNED_BYTE, // RGBA_8888
626 GL_UNSIGNED_SHORT_4_4_4_4, // RGBA_4444
627 GL_UNSIGNED_BYTE, // BGRA_8888
628 GL_UNSIGNED_BYTE, // ALPHA_8
629 GL_UNSIGNED_BYTE, // LUMINANCE_8
630 GL_UNSIGNED_SHORT_5_6_5, // RGB_565,
631 GL_UNSIGNED_BYTE // ETC1
633 return format_gl_data_type[format];
636 inline GLenum GLDataFormat(ResourceFormat format) {
637 DCHECK_LE(format, RESOURCE_FORMAT_MAX);
638 static const unsigned format_gl_data_format[RESOURCE_FORMAT_MAX + 1] = {
639 GL_RGBA, // RGBA_8888
640 GL_RGBA, // RGBA_4444
641 GL_BGRA_EXT, // BGRA_8888
642 GL_ALPHA, // ALPHA_8
643 GL_LUMINANCE, // LUMINANCE_8
644 GL_RGB, // RGB_565
645 GL_ETC1_RGB8_OES // ETC1
647 return format_gl_data_format[format];
650 inline GLenum GLInternalFormat(ResourceFormat format) {
651 return GLDataFormat(format);
654 } // namespace cc
656 #endif // CC_RESOURCES_RESOURCE_PROVIDER_H_