1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/*
Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef TextureMapperLayer_h
#define TextureMapperLayer_h
#include "FilterOperations.h"
#include "FloatRect.h"
#include "GraphicsContext.h"
#include "GraphicsLayer.h"
#include "Image.h"
#include "IntPointHash.h"
#include "LayerTransform.h"
#include "TextureMapper.h"
#include "TextureMapperAnimation.h"
#include "TextureMapperBackingStore.h"
#include "Timer.h"
#include "TransformOperations.h"
#include <wtf/CurrentTime.h>
#include <wtf/HashMap.h>
#include <wtf/RefCounted.h>
namespace WebCore {
class TextureMapperPlatformLayer;
class TextureMapperLayer;
class GraphicsLayerTextureMapper;
class TextureMapperPaintOptions {
public:
RefPtr<BitmapTexture> surface;
RefPtr<BitmapTexture> mask;
float opacity;
TransformationMatrix transform;
IntSize offset;
TextureMapper* textureMapper;
TextureMapperPaintOptions()
: opacity(1)
, textureMapper(0)
{ }
};
class TextureMapperLayer : public TextureMapperAnimationClient {
public:
// This set of flags help us defer which properties of the layer have been
// modified by the compositor, so we can know what to look for in the next flush.
enum ChangeMask {
NoChanges = 0,
ParentChange = (1L << 0),
ChildrenChange = (1L << 1),
MaskLayerChange = (1L << 2),
PositionChange = (1L << 3),
AnchorPointChange = (1L << 4),
SizeChange = (1L << 5),
TransformChange = (1L << 6),
ContentChange = (1L << 7),
ContentsOrientationChange = (1L << 9),
OpacityChange = (1L << 10),
ContentsRectChange = (1L << 11),
Preserves3DChange = (1L << 12),
MasksToBoundsChange = (1L << 13),
DrawsContentChange = (1L << 14),
ContentsOpaqueChange = (1L << 15),
BackfaceVisibilityChange = (1L << 16),
ChildrenTransformChange = (1L << 17),
DisplayChange = (1L << 18),
BackgroundColorChange = (1L << 19),
ReplicaLayerChange = (1L << 20),
AnimationChange = (1L << 21),
FilterChange = (1L << 22)
};
enum SyncOptions {
TraverseDescendants = 1,
ComputationsOnly = 2
};
TextureMapperLayer()
: m_parent(0)
, m_effectTarget(0)
, m_contentsLayer(0)
, m_opacity(1)
, m_centerZ(0)
, m_shouldUpdateBackingStoreFromLayer(true)
, m_textureMapper(0)
{ }
virtual ~TextureMapperLayer();
void syncCompositingState(GraphicsLayerTextureMapper*, int syncOptions = 0);
void syncCompositingState(GraphicsLayerTextureMapper*, TextureMapper*, int syncOptions = 0);
void syncAnimationsRecursively();
IntSize size() const { return IntSize(m_size.width(), m_size.height()); }
void setTransform(const TransformationMatrix&);
void setOpacity(float value) { m_opacity = value; }
void setTextureMapper(TextureMapper* texmap) { m_textureMapper = texmap; }
bool descendantsOrSelfHaveRunningAnimations() const;
void paint();
void setShouldUpdateBackingStoreFromLayer(bool b) { m_shouldUpdateBackingStoreFromLayer = b; }
void setBackingStore(TextureMapperBackingStore* backingStore) { m_backingStore = backingStore; }
PassRefPtr<TextureMapperBackingStore> backingStore() { return m_backingStore; }
void clearBackingStoresRecursive();
private:
TextureMapperLayer* rootLayer();
void computeTransformsRecursive();
void computeOverlapsIfNeeded();
void computeTiles();
IntRect intermediateSurfaceRect(const TransformationMatrix&);
IntRect intermediateSurfaceRect();
void swapContentsBuffers();
FloatRect targetRectForTileRect(const FloatRect& totalTargetRect, const FloatRect& tileRect) const;
void invalidateViewport(const FloatRect&);
void notifyChange(ChangeMask);
void syncCompositingStateSelf(GraphicsLayerTextureMapper*, TextureMapper*);
static int compareGraphicsLayersZValue(const void* a, const void* b);
static void sortByZOrder(Vector<TextureMapperLayer* >& array, int first, int last);
PassRefPtr<BitmapTexture> texture() { return m_backingStore ? m_backingStore->texture() : 0; }
void paintRecursive(const TextureMapperPaintOptions&);
void paintSelf(const TextureMapperPaintOptions&);
void paintSelfAndChildren(const TextureMapperPaintOptions&);
void paintSelfAndChildrenWithReplica(const TextureMapperPaintOptions&);
void updateBackingStore(TextureMapper*, GraphicsLayer*);
void syncAnimations();
bool isVisible() const;
bool shouldPaintToIntermediateSurface() const;
LayerTransform m_transform;
inline FloatRect layerRect() const
{
return FloatRect(FloatPoint::zero(), m_size);
}
Vector<TextureMapperLayer*> m_children;
TextureMapperLayer* m_parent;
TextureMapperLayer* m_effectTarget;
RefPtr<TextureMapperBackingStore> m_backingStore;
TextureMapperPlatformLayer* m_contentsLayer;
FloatSize m_size;
float m_opacity;
float m_centerZ;
String m_name;
bool m_shouldUpdateBackingStoreFromLayer;
struct State {
FloatPoint pos;
FloatPoint3D anchorPoint;
FloatSize size;
TransformationMatrix transform;
TransformationMatrix childrenTransform;
float opacity;
FloatRect contentsRect;
FloatRect needsDisplayRect;
int descendantsWithContent;
TextureMapperLayer* maskLayer;
TextureMapperLayer* replicaLayer;
#if ENABLE(CSS_FILTERS)
FilterOperations filters;
#endif
bool preserves3D : 1;
bool masksToBounds : 1;
bool drawsContent : 1;
bool contentsOpaque : 1;
bool backfaceVisibility : 1;
bool visible : 1;
bool needsDisplay: 1;
bool mightHaveOverlaps : 1;
bool needsRepaint;
State()
: opacity(1.f)
, maskLayer(0)
, replicaLayer(0)
, preserves3D(false)
, masksToBounds(false)
, drawsContent(false)
, contentsOpaque(false)
, backfaceVisibility(false)
, visible(true)
, needsDisplay(true)
, mightHaveOverlaps(false)
, needsRepaint(false)
{
}
};
State m_state;
TextureMapper* m_textureMapper;
TextureMapperAnimations m_animations;
};
TextureMapperLayer* toTextureMapperLayer(GraphicsLayer*);
}
#endif // TextureMapperLayer_h
|