Ignore contiguous composition event.
[framework/web/webkit-efl.git] / Source / WebKit2 / Shared / WebRenderLayer.cpp
1 /*
2  * Copyright (C) 2012 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "WebRenderLayer.h"
28
29 #include "WebPage.h"
30 #include "WebString.h"
31 #include <WebCore/Frame.h>
32 #include <WebCore/FrameLoaderClient.h>
33 #include <WebCore/RenderLayer.h>
34 #include <WebCore/RenderLayerBacking.h>
35 #include <WebCore/RenderView.h>
36 #include <WebCore/StyledElement.h>
37
38 using namespace WebCore;
39
40 namespace WebKit {
41
42 PassRefPtr<WebRenderLayer> WebRenderLayer::create(WebPage* page)
43 {
44     Frame* mainFrame = page->mainFrame();
45     if (!mainFrame)
46         return 0;
47
48     if (!mainFrame->loader()->client()->hasHTMLView())
49         return 0;
50
51     RenderView* contentRenderer = mainFrame->contentRenderer();
52     if (!contentRenderer)
53         return 0;
54
55     RenderLayer* rootLayer = contentRenderer->layer();
56     if (!rootLayer)
57         return 0;
58
59     return adoptRef(new WebRenderLayer(rootLayer));
60 }
61
62 PassRefPtr<MutableArray> WebRenderLayer::createArrayFromLayerList(Vector<RenderLayer*>* list)
63 {
64     if (!list || !list->size())
65         return 0;
66
67     RefPtr<MutableArray> array = MutableArray::create();
68     for (size_t i = 0; i < list->size(); ++i) {
69         RefPtr<WebRenderLayer> layer = adoptRef(new WebRenderLayer(list->at(i)));
70         array->append(layer.get());
71     }
72
73     return array.release();
74 }
75
76 WebRenderLayer::WebRenderLayer(RenderLayer* layer)
77 {
78     m_renderer = WebRenderObject::create(layer->renderer());
79     m_isReflection = layer->isReflection();
80
81 #if USE(ACCELERATED_COMPOSITING)
82     if (layer->isComposited()) {
83         RenderLayerBacking* backing = layer->backing();
84         m_isClipping = backing->hasClippingLayer();
85         m_isClipped = backing->hasAncestorClippingLayer();
86         switch (backing->compositingLayerType()) {
87         case NormalCompositingLayer:
88             m_compositingLayerType = Normal;
89             break;
90         case TiledCompositingLayer:
91             m_compositingLayerType = Tiled;
92             break;
93         case MediaCompositingLayer:
94             m_compositingLayerType = Media;
95             break;
96         case ContainerCompositingLayer:
97             m_compositingLayerType = Container;
98             break;
99         }
100     } else {
101 #endif
102         m_isClipping = false;
103         m_isClipped = false;
104         m_compositingLayerType = None;
105 #if USE(ACCELERATED_COMPOSITING)
106     }
107 #endif
108
109     m_absoluteBoundingBox = layer->absoluteBoundingBox();
110
111     m_negativeZOrderList = createArrayFromLayerList(layer->negZOrderList());
112     m_normalFlowList = createArrayFromLayerList(layer->normalFlowList());
113     m_positiveZOrderList = createArrayFromLayerList(layer->posZOrderList());
114 }
115
116 } // namespace WebKit