OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/io_surface_layer.h" | 5 #include "cc/layers/io_surface_layer.h" |
6 | 6 |
7 #include "cc/io_surface_layer_impl.h" | 7 #include "cc/layers/io_surface_layer_impl.h" |
8 | 8 |
9 namespace cc { | 9 namespace cc { |
10 | 10 |
11 scoped_refptr<IOSurfaceLayer> IOSurfaceLayer::Create() { | 11 scoped_refptr<IOSurfaceLayer> IOSurfaceLayer::Create() { |
12 return make_scoped_refptr(new IOSurfaceLayer()); | 12 return make_scoped_refptr(new IOSurfaceLayer()); |
13 } | 13 } |
14 | 14 |
15 IOSurfaceLayer::IOSurfaceLayer() : Layer(), io_surface_id_(0) {} | 15 IOSurfaceLayer::IOSurfaceLayer() : Layer(), io_surface_id_(0) {} |
16 | 16 |
17 IOSurfaceLayer::~IOSurfaceLayer() {} | 17 IOSurfaceLayer::~IOSurfaceLayer() {} |
(...skipping 16 matching lines...) Expand all Loading... |
34 | 34 |
35 void IOSurfaceLayer::PushPropertiesTo(LayerImpl* layer) { | 35 void IOSurfaceLayer::PushPropertiesTo(LayerImpl* layer) { |
36 Layer::PushPropertiesTo(layer); | 36 Layer::PushPropertiesTo(layer); |
37 | 37 |
38 IOSurfaceLayerImpl* io_surface_layer = | 38 IOSurfaceLayerImpl* io_surface_layer = |
39 static_cast<IOSurfaceLayerImpl*>(layer); | 39 static_cast<IOSurfaceLayerImpl*>(layer); |
40 io_surface_layer->SetIOSurfaceProperties(io_surface_id_, io_surface_size_); | 40 io_surface_layer->SetIOSurfaceProperties(io_surface_id_, io_surface_size_); |
41 } | 41 } |
42 | 42 |
43 } // namespace cc | 43 } // namespace cc |
OLD | NEW |