OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LayerUpdater
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/cc/resources/
layer_updater.cc
11
LayerUpdater
::Resource::Resource(scoped_ptr<PrioritizedResource> texture)
14
LayerUpdater
::Resource::~Resource() {}
layer_updater.h
21
class CC_EXPORT
LayerUpdater
: public base::RefCounted<
LayerUpdater
> {
44
LayerUpdater
() {}
63
virtual ~
LayerUpdater
() {}
66
friend class base::RefCounted<
LayerUpdater
>;
68
DISALLOW_COPY_AND_ASSIGN(
LayerUpdater
);
image_layer_updater.h
16
class CC_EXPORT ImageLayerUpdater : public
LayerUpdater
{
18
class Resource : public
LayerUpdater
::Resource {
37
virtual scoped_ptr<
LayerUpdater
::Resource> CreateResource(
image_layer_updater.cc
13
:
LayerUpdater
::Resource(texture.Pass()), updater_(updater) {}
30
scoped_ptr<
LayerUpdater
::Resource> ImageLayerUpdater::CreateResource(
32
return scoped_ptr<
LayerUpdater
::Resource>(
content_layer_updater.h
22
class CC_EXPORT ContentLayerUpdater : public
LayerUpdater
{
bitmap_content_layer_updater.h
25
class Resource : public
LayerUpdater
::Resource {
47
virtual scoped_ptr<
LayerUpdater
::Resource> CreateResource(
bitmap_content_layer_updater.cc
20
:
LayerUpdater
::Resource(texture.Pass()), updater_(updater) {}
50
scoped_ptr<
LayerUpdater
::Resource> BitmapContentLayerUpdater::CreateResource(
52
return scoped_ptr<
LayerUpdater
::Resource>(
bitmap_skpicture_content_layer_updater.h
40
virtual scoped_ptr<
LayerUpdater
::Resource> CreateResource(
bitmap_skpicture_content_layer_updater.cc
64
scoped_ptr<
LayerUpdater
::Resource>
67
return scoped_ptr<
LayerUpdater
::Resource>(
/external/chromium_org/cc/layers/
image_layer.h
43
virtual
LayerUpdater
* Updater() const OVERRIDE;
tiled_layer.h
14
class
LayerUpdater
;
56
virtual
LayerUpdater
* Updater() const = 0;
content_layer.h
64
virtual
LayerUpdater
* Updater() const OVERRIDE;
image_layer.cc
63
LayerUpdater
* ImageLayer::Updater() const {
content_layer.cc
108
LayerUpdater
* ContentLayer::Updater() const {
tiled_layer.cc
37
scoped_ptr<
LayerUpdater
::Resource> updater_resource) {
41
LayerUpdater
::Resource* updater_resource() { return updater_resource_.get(); }
76
explicit UpdatableTile(scoped_ptr<
LayerUpdater
::Resource> updater_resource)
82
scoped_ptr<
LayerUpdater
::Resource> updater_resource_;
494
scoped_refptr<
LayerUpdater
> protector(Updater());
[
all
...]
tiled_layer_unittest.cc
806
// the
LayerUpdater
.
[
all
...]
/external/chromium_org/cc/test/
tiled_layer_test_common.h
23
class FakeLayerUpdater : public
LayerUpdater
{
25
class Resource : public
LayerUpdater
::Resource {
45
virtual scoped_ptr<
LayerUpdater
::Resource> CreateResource(
125
virtual
LayerUpdater
* Updater() const OVERRIDE;
tiled_layer_test_common.cc
11
:
LayerUpdater
::Resource(texture.Pass()), layer_(layer) {
58
scoped_ptr<
LayerUpdater
::Resource> FakeLayerUpdater::CreateResource(
60
return scoped_ptr<
LayerUpdater
::Resource>(
146
LayerUpdater
* FakeTiledLayer::Updater() const {
Completed in 876 milliseconds