OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextureLayerImpl
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/cc/layers/
texture_layer_impl.h
18
class CC_EXPORT
TextureLayerImpl
: public LayerImpl {
20
static scoped_ptr<
TextureLayerImpl
> Create(LayerTreeImpl* tree_impl,
23
return make_scoped_ptr(new
TextureLayerImpl
(tree_impl, id, uses_mailbox));
25
virtual ~
TextureLayerImpl
();
67
TextureLayerImpl
(LayerTreeImpl* tree_impl, int id, bool uses_mailbox);
89
DISALLOW_COPY_AND_ASSIGN(
TextureLayerImpl
);
texture_layer_impl.cc
20
TextureLayerImpl
::
TextureLayerImpl
(LayerTreeImpl* tree_impl,
40
TextureLayerImpl
::~
TextureLayerImpl
() { FreeTextureMailbox(); }
42
void
TextureLayerImpl
::SetTextureMailbox(
54
scoped_ptr<LayerImpl>
TextureLayerImpl
::CreateLayerImpl(
56
return
TextureLayerImpl
::Create(tree_impl, id(), uses_mailbox_).
60
void
TextureLayerImpl
::PushPropertiesTo(LayerImpl* layer) {
63
TextureLayerImpl
* texture_layer = static_cast<
TextureLayerImpl
*>(layer)
[
all
...]
texture_layer_unittest.cc
116
scoped_ptr<
TextureLayerImpl
> impl_layer;
117
impl_layer =
TextureLayerImpl
::Create(host_impl_.active_tree(), 1, false);
[
all
...]
texture_layer.cc
61
return
TextureLayerImpl
::Create(tree_impl, id(), uses_mailbox_).
200
// If we're removed from the tree, the
TextureLayerImpl
will be destroyed, and
201
// we will need to set the mailbox again on a new
TextureLayerImpl
the next
253
TextureLayerImpl
* texture_layer = static_cast<
TextureLayerImpl
*>(layer);
Completed in 182 milliseconds