texture_layer_impl.cc revision c5cede9ae108bb15f6b7a8aea21c7e1fefa2834c
1// Copyright 2011 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.
4
5#include "cc/layers/texture_layer_impl.h"
6
7#include <vector>
8
9#include "base/strings/stringprintf.h"
10#include "cc/layers/quad_sink.h"
11#include "cc/output/renderer.h"
12#include "cc/quads/texture_draw_quad.h"
13#include "cc/resources/platform_color.h"
14#include "cc/resources/scoped_resource.h"
15#include "cc/resources/single_release_callback.h"
16#include "cc/trees/layer_tree_impl.h"
17
18namespace cc {
19
20TextureLayerImpl::TextureLayerImpl(LayerTreeImpl* tree_impl, int id)
21    : LayerImpl(tree_impl, id),
22      external_texture_resource_(0),
23      premultiplied_alpha_(true),
24      blend_background_color_(false),
25      flipped_(true),
26      uv_top_left_(0.f, 0.f),
27      uv_bottom_right_(1.f, 1.f),
28      own_mailbox_(false),
29      valid_texture_copy_(false) {
30  vertex_opacity_[0] = 1.0f;
31  vertex_opacity_[1] = 1.0f;
32  vertex_opacity_[2] = 1.0f;
33  vertex_opacity_[3] = 1.0f;
34}
35
36TextureLayerImpl::~TextureLayerImpl() { FreeTextureMailbox(); }
37
38void TextureLayerImpl::SetTextureMailbox(
39    const TextureMailbox& mailbox,
40    scoped_ptr<SingleReleaseCallback> release_callback) {
41  DCHECK_EQ(mailbox.IsValid(), !!release_callback);
42  FreeTextureMailbox();
43  texture_mailbox_ = mailbox;
44  release_callback_ = release_callback.Pass();
45  own_mailbox_ = true;
46  valid_texture_copy_ = false;
47  SetNeedsPushProperties();
48}
49
50scoped_ptr<LayerImpl> TextureLayerImpl::CreateLayerImpl(
51    LayerTreeImpl* tree_impl) {
52  return TextureLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
53}
54
55void TextureLayerImpl::PushPropertiesTo(LayerImpl* layer) {
56  LayerImpl::PushPropertiesTo(layer);
57
58  TextureLayerImpl* texture_layer = static_cast<TextureLayerImpl*>(layer);
59  texture_layer->SetFlipped(flipped_);
60  texture_layer->SetUVTopLeft(uv_top_left_);
61  texture_layer->SetUVBottomRight(uv_bottom_right_);
62  texture_layer->SetVertexOpacity(vertex_opacity_);
63  texture_layer->SetPremultipliedAlpha(premultiplied_alpha_);
64  texture_layer->SetBlendBackgroundColor(blend_background_color_);
65  if (own_mailbox_) {
66    texture_layer->SetTextureMailbox(texture_mailbox_,
67                                     release_callback_.Pass());
68    own_mailbox_ = false;
69  }
70}
71
72bool TextureLayerImpl::WillDraw(DrawMode draw_mode,
73                                ResourceProvider* resource_provider) {
74  if (draw_mode == DRAW_MODE_RESOURCELESS_SOFTWARE)
75    return false;
76
77  if (own_mailbox_) {
78    DCHECK(!external_texture_resource_);
79    if ((draw_mode == DRAW_MODE_HARDWARE && texture_mailbox_.IsTexture()) ||
80        (draw_mode == DRAW_MODE_SOFTWARE &&
81         texture_mailbox_.IsSharedMemory())) {
82      external_texture_resource_ =
83          resource_provider->CreateResourceFromTextureMailbox(
84              texture_mailbox_, release_callback_.Pass());
85      DCHECK(external_texture_resource_);
86      texture_copy_.reset();
87      valid_texture_copy_ = false;
88    }
89    if (external_texture_resource_)
90      own_mailbox_ = false;
91  }
92
93  if (!valid_texture_copy_ && draw_mode == DRAW_MODE_HARDWARE &&
94      texture_mailbox_.IsSharedMemory()) {
95    DCHECK(!external_texture_resource_);
96    // Have to upload a copy to a texture for it to be used in a
97    // hardware draw.
98    if (!texture_copy_)
99      texture_copy_ = ScopedResource::Create(resource_provider);
100    if (texture_copy_->size() != texture_mailbox_.shared_memory_size() ||
101        resource_provider->InUseByConsumer(texture_copy_->id()))
102      texture_copy_->Free();
103
104    if (!texture_copy_->id()) {
105      texture_copy_->Allocate(texture_mailbox_.shared_memory_size(),
106                              ResourceProvider::TextureUsageAny,
107                              resource_provider->best_texture_format());
108    }
109
110    if (texture_copy_->id()) {
111      std::vector<uint8> swizzled;
112      uint8* pixels =
113          static_cast<uint8*>(texture_mailbox_.shared_memory()->memory());
114
115      if (!PlatformColor::SameComponentOrder(texture_copy_->format())) {
116        // Swizzle colors. This is slow, but should be really uncommon.
117        size_t bytes = texture_mailbox_.SharedMemorySizeInBytes();
118        swizzled.resize(bytes);
119        for (size_t i = 0; i < bytes; i += 4) {
120          swizzled[i] = pixels[i + 2];
121          swizzled[i + 1] = pixels[i + 1];
122          swizzled[i + 2] = pixels[i];
123          swizzled[i + 3] = pixels[i + 3];
124        }
125        pixels = &swizzled[0];
126      }
127
128      resource_provider->SetPixels(
129          texture_copy_->id(),
130          pixels,
131          gfx::Rect(texture_mailbox_.shared_memory_size()),
132          gfx::Rect(texture_mailbox_.shared_memory_size()),
133          gfx::Vector2d());
134
135      valid_texture_copy_ = true;
136    }
137  }
138  return (external_texture_resource_ || valid_texture_copy_) &&
139         LayerImpl::WillDraw(draw_mode, resource_provider);
140}
141
142void TextureLayerImpl::AppendQuads(QuadSink* quad_sink,
143                                   AppendQuadsData* append_quads_data) {
144  DCHECK(external_texture_resource_ || valid_texture_copy_);
145
146  SharedQuadState* shared_quad_state =
147      quad_sink->UseSharedQuadState(CreateSharedQuadState());
148  AppendDebugBorderQuad(quad_sink, shared_quad_state, append_quads_data);
149
150  SkColor bg_color = blend_background_color_ ?
151      background_color() : SK_ColorTRANSPARENT;
152  bool opaque = contents_opaque() || (SkColorGetA(bg_color) == 0xFF);
153
154  gfx::Rect quad_rect(content_bounds());
155  gfx::Rect opaque_rect = opaque ? quad_rect : gfx::Rect();
156  gfx::Rect visible_quad_rect = quad_sink->UnoccludedContentRect(
157      quad_rect, draw_properties().target_space_transform);
158  if (visible_quad_rect.IsEmpty())
159    return;
160
161  scoped_ptr<TextureDrawQuad> quad = TextureDrawQuad::Create();
162  ResourceProvider::ResourceId id =
163      valid_texture_copy_ ? texture_copy_->id() : external_texture_resource_;
164  quad->SetNew(shared_quad_state,
165               quad_rect,
166               opaque_rect,
167               visible_quad_rect,
168               id,
169               premultiplied_alpha_,
170               uv_top_left_,
171               uv_bottom_right_,
172               bg_color,
173               vertex_opacity_,
174               flipped_);
175  quad_sink->Append(quad.PassAs<DrawQuad>());
176}
177
178Region TextureLayerImpl::VisibleContentOpaqueRegion() const {
179  if (contents_opaque())
180    return visible_content_rect();
181
182  if (blend_background_color_ && (SkColorGetA(background_color()) == 0xFF))
183    return visible_content_rect();
184
185  return Region();
186}
187
188void TextureLayerImpl::ReleaseResources() {
189  FreeTextureMailbox();
190  texture_copy_.reset();
191  external_texture_resource_ = 0;
192  valid_texture_copy_ = false;
193}
194
195void TextureLayerImpl::SetPremultipliedAlpha(bool premultiplied_alpha) {
196  premultiplied_alpha_ = premultiplied_alpha;
197  SetNeedsPushProperties();
198}
199
200void TextureLayerImpl::SetBlendBackgroundColor(bool blend) {
201  blend_background_color_ = blend;
202  SetNeedsPushProperties();
203}
204
205void TextureLayerImpl::SetFlipped(bool flipped) {
206  flipped_ = flipped;
207  SetNeedsPushProperties();
208}
209
210void TextureLayerImpl::SetUVTopLeft(const gfx::PointF top_left) {
211  uv_top_left_ = top_left;
212  SetNeedsPushProperties();
213}
214
215void TextureLayerImpl::SetUVBottomRight(const gfx::PointF bottom_right) {
216  uv_bottom_right_ = bottom_right;
217  SetNeedsPushProperties();
218}
219
220// 1--2
221// |  |
222// 0--3
223void TextureLayerImpl::SetVertexOpacity(const float vertex_opacity[4]) {
224  vertex_opacity_[0] = vertex_opacity[0];
225  vertex_opacity_[1] = vertex_opacity[1];
226  vertex_opacity_[2] = vertex_opacity[2];
227  vertex_opacity_[3] = vertex_opacity[3];
228  SetNeedsPushProperties();
229}
230
231const char* TextureLayerImpl::LayerTypeAsString() const {
232  return "cc::TextureLayerImpl";
233}
234
235void TextureLayerImpl::FreeTextureMailbox() {
236  if (own_mailbox_) {
237    DCHECK(!external_texture_resource_);
238    if (release_callback_)
239      release_callback_->Run(texture_mailbox_.sync_point(), false);
240    texture_mailbox_ = TextureMailbox();
241    release_callback_.reset();
242  } else if (external_texture_resource_) {
243    DCHECK(!own_mailbox_);
244    ResourceProvider* resource_provider =
245        layer_tree_impl()->resource_provider();
246    resource_provider->DeleteResource(external_texture_resource_);
247    external_texture_resource_ = 0;
248  }
249}
250
251}  // namespace cc
252