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_SCHEDULER_TEXTURE_UPLOADER_H_
6 #define CC_SCHEDULER_TEXTURE_UPLOADER_H_
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "cc/base/cc_export.h"
13 #include "cc/base/scoped_ptr_deque.h"
14 #include "cc/resources/resource_provider.h"
30 class CC_EXPORT TextureUploader
{
32 static scoped_ptr
<TextureUploader
> Create(gpu::gles2::GLES2Interface
* gl
) {
33 return make_scoped_ptr(new TextureUploader(gl
));
37 size_t NumBlockingUploads();
38 void MarkPendingUploadsAsNonBlocking();
39 double EstimatedTexturesPerSecond();
41 // Let content_rect be a rectangle, and let content_rect be a sub-rectangle of
42 // content_rect, expressed in the same coordinate system as content_rect. Let
43 // image be a buffer for content_rect. This function will copy the region
44 // corresponding to source_rect to dest_offset in this sub-image.
45 void Upload(const uint8
* image
,
46 const gfx::Rect
& content_rect
,
47 const gfx::Rect
& source_rect
,
48 gfx::Vector2d dest_offset
,
49 ResourceFormat format
,
53 void ReleaseCachedQueries();
58 static scoped_ptr
<Query
> Create(gpu::gles2::GLES2Interface
* gl
) {
59 return make_scoped_ptr(new Query(gl
));
68 size_t TexturesUploaded();
69 void mark_as_non_blocking() {
70 is_non_blocking_
= true;
72 bool is_non_blocking() const {
73 return is_non_blocking_
;
77 explicit Query(gpu::gles2::GLES2Interface
* gl
);
79 gpu::gles2::GLES2Interface
* gl_
;
83 bool is_non_blocking_
;
85 DISALLOW_COPY_AND_ASSIGN(Query
);
88 explicit TextureUploader(gpu::gles2::GLES2Interface
* gl
);
92 void ProcessQueries();
94 void UploadWithTexSubImage(const uint8
* image
,
95 const gfx::Rect
& image_rect
,
96 const gfx::Rect
& source_rect
,
97 gfx::Vector2d dest_offset
,
98 ResourceFormat format
);
99 void UploadWithMapTexSubImage(const uint8
* image
,
100 const gfx::Rect
& image_rect
,
101 const gfx::Rect
& source_rect
,
102 gfx::Vector2d dest_offset
,
103 ResourceFormat format
);
104 void UploadWithTexImageETC1(const uint8
* image
, gfx::Size size
);
106 gpu::gles2::GLES2Interface
* gl_
;
107 ScopedPtrDeque
<Query
> pending_queries_
;
108 ScopedPtrDeque
<Query
> available_queries_
;
109 std::multiset
<double> textures_per_second_history_
;
110 size_t num_blocking_texture_uploads_
;
112 size_t sub_image_size_
;
113 scoped_ptr
<uint8
[]> sub_image_
;
115 size_t num_texture_uploads_since_last_flush_
;
117 DISALLOW_COPY_AND_ASSIGN(TextureUploader
);
122 #endif // CC_SCHEDULER_TEXTURE_UPLOADER_H_