OSDN Git Service

d2e10c82c25e4084431fc23314b0940f02e6d118
[android-x86/external-webkit.git] / Source / WebCore / platform / graphics / android / TreeManager.h
1 /*
2  * Copyright 2011, The Android Open Source Project
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  *  * Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  *  * 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 THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef TreeManager_h
27 #define TreeManager_h
28
29 #include "TestExport.h"
30 #include <utils/threads.h>
31
32 class Layer;
33 class SkRect;
34 class SkCanvas;
35
36 namespace WebCore {
37
38 class IntRect;
39 class TexturesResult;
40
41 class TEST_EXPORT TreeManager {
42 public:
43     TreeManager();
44
45     ~TreeManager();
46
47     void updateWithTree(Layer* tree, bool brandNew);
48
49     bool drawGL(double currentTime, IntRect& viewRect,
50                 SkRect& visibleRect, float scale,
51                 bool enterFastSwapMode, bool* treesSwappedPtr, bool* newTreeHasAnimPtr,
52                 TexturesResult* texturesResultPtr);
53
54     void drawCanvas(SkCanvas* canvas, bool drawLayers);
55
56     // used in debugging (to avoid exporting TilesManager symbols)
57     static int getTotalPaintedSurfaceCount();
58
59     int baseContentWidth();
60     int baseContentHeight();
61
62 private:
63     void swap();
64     void clearTrees();
65
66     android::Mutex m_paintSwapLock;
67
68     Layer* m_drawingTree;
69     Layer* m_paintingTree;
70     Layer* m_queuedTree;
71
72     bool m_fastSwapMode;
73 };
74
75 } // namespace WebCore
76
77 #endif //#define TreeManager_h