OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PictureLayerImpl
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/cc/test/
fake_picture_layer_impl.h
13
class FakePictureLayerImpl : public
PictureLayerImpl
{
31
using
PictureLayerImpl
::AddTiling;
32
using
PictureLayerImpl
::CleanUpTilingsOnActiveLayer;
33
using
PictureLayerImpl
::CanHaveTilings;
34
using
PictureLayerImpl
::MarkVisibleResourcesAsRequired;
35
using
PictureLayerImpl
::DoPostCommitInitializationIfNeeded;
36
using
PictureLayerImpl
::MinimumContentsScale;
49
PictureLayerImpl
* twin_layer() { return twin_layer_; }
fake_picture_layer_impl.cc
17
:
PictureLayerImpl
(tree_impl, id),
24
:
PictureLayerImpl
(tree_impl, id), append_quads_count_(0) {}
34
PictureLayerImpl
::AppendQuads(quad_sink, append_quads_data);
41
return
PictureLayerImpl
::CalculateTileSize(content_bounds);
/external/chromium_org/cc/layers/
picture_image_layer_impl.cc
15
:
PictureLayerImpl
(tree_impl, id) {
41
PictureLayerImpl
::CalculateContentsScale(ideal_contents_scale,
63
// Defaults from
PictureLayerImpl
.
64
PictureLayerImpl
::RecalculateRasterScales(animating_transform_to_screen);
picture_layer_impl.h
26
class CC_EXPORT
PictureLayerImpl
30
static scoped_ptr<
PictureLayerImpl
> Create(LayerTreeImpl* tree_impl, int id) {
31
return make_scoped_ptr(new
PictureLayerImpl
(tree_impl, id));
33
virtual ~
PictureLayerImpl
();
77
PictureLayerImpl
(LayerTreeImpl* tree_impl, int id);
81
void SyncFromActiveLayer(const
PictureLayerImpl
* other);
116
PictureLayerImpl
* twin_layer_;
146
DISALLOW_COPY_AND_ASSIGN(
PictureLayerImpl
);
picture_layer_impl.cc
39
PictureLayerImpl
::
PictureLayerImpl
(LayerTreeImpl* tree_impl, int id)
59
PictureLayerImpl
::~
PictureLayerImpl
() {}
61
const char*
PictureLayerImpl
::LayerTypeAsString() const {
62
return "cc::
PictureLayerImpl
";
65
scoped_ptr<LayerImpl>
PictureLayerImpl
::CreateLayerImpl(
67
return
PictureLayerImpl
::Create(tree_impl, id()).PassAs<LayerImpl>();
70
void
PictureLayerImpl
::PushPropertiesTo(LayerImpl* base_layer) {
74
PictureLayerImpl
* layer_impl = static_cast<PictureLayerImpl*>(base_layer)
[
all
...]
picture_image_layer_impl.h
12
class CC_EXPORT PictureImageLayerImpl : public
PictureLayerImpl
{
picture_layer.cc
34
return
PictureLayerImpl
::Create(tree_impl, id()).PassAs<LayerImpl>();
39
PictureLayerImpl
* layer_impl = static_cast<
PictureLayerImpl
*>(base_layer);
54
// See
PictureLayerImpl
::PushPropertiesTo for more details.
/external/chromium_org/cc/debug/
micro_benchmark_impl.h
21
class
PictureLayerImpl
;
35
virtual void RunOnLayer(
PictureLayerImpl
* layer);
rasterize_and_record_benchmark_impl.h
18
class
PictureLayerImpl
;
30
virtual void RunOnLayer(
PictureLayerImpl
* layer) OVERRIDE;
micro_benchmark_impl.cc
46
void MicroBenchmarkImpl::RunOnLayer(
PictureLayerImpl
* layer) {}
rasterize_and_record_benchmark_impl.cc
68
void RasterizeAndRecordBenchmarkImpl::RunOnLayer(
PictureLayerImpl
* layer) {
/external/chromium_org/cc/trees/
layer_tree_host_pixeltest_on_demand_raster.cc
38
// Find the
PictureLayerImpl
ask it to append quads to check their material.
39
// The
PictureLayerImpl
is assumed to be the first child of the root layer
41
PictureLayerImpl
* picture_layer = static_cast<
PictureLayerImpl
*>(
Completed in 608 milliseconds