OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SolidColorLayerImpl
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/cc/layers/
solid_color_layer_impl.h
14
class CC_EXPORT
SolidColorLayerImpl
: public LayerImpl {
16
static scoped_ptr<
SolidColorLayerImpl
> Create(LayerTreeImpl* tree_impl,
18
return make_scoped_ptr(new
SolidColorLayerImpl
(tree_impl, id));
29
virtual ~
SolidColorLayerImpl
();
39
SolidColorLayerImpl
(LayerTreeImpl* tree_impl, int id);
44
DISALLOW_COPY_AND_ASSIGN(
SolidColorLayerImpl
);
solid_color_layer_impl.cc
18
SolidColorLayerImpl
::
SolidColorLayerImpl
(LayerTreeImpl* tree_impl, int id)
22
SolidColorLayerImpl
::~
SolidColorLayerImpl
() {}
24
scoped_ptr<LayerImpl>
SolidColorLayerImpl
::CreateLayerImpl(
26
return
SolidColorLayerImpl
::Create(tree_impl, id()).PassAs<LayerImpl>();
29
void
SolidColorLayerImpl
::AppendSolidQuads(
64
void
SolidColorLayerImpl
::AppendQuads(
85
const char*
SolidColorLayerImpl
::LayerTypeAsString() const {
86
return "cc::
SolidColorLayerImpl
";
[
all
...]
Completed in 38 milliseconds