blob: 2fbaca167ffe4c5bc371f108c0da1a624d1512c7 [file] [log] [blame]
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/layers/solid_color_layer.h"
#include "cc/layers/solid_color_layer_impl.h"
namespace cc {
scoped_ptr<LayerImpl> SolidColorLayer::CreateLayerImpl(
LayerTreeImpl* tree_impl) {
return SolidColorLayerImpl::Create(tree_impl, id());
}
scoped_refptr<SolidColorLayer> SolidColorLayer::Create(
const LayerSettings& settings) {
return make_scoped_refptr(new SolidColorLayer(settings));
}
SolidColorLayer::SolidColorLayer(const LayerSettings& settings)
: Layer(settings) {
}
SolidColorLayer::~SolidColorLayer() {}
void SolidColorLayer::SetBackgroundColor(SkColor color) {
SetContentsOpaque(SkColorGetA(color) == 255);
Layer::SetBackgroundColor(color);
}
} // namespace cc