зеркало из https://github.com/mozilla/gecko-dev.git
188 строки
6.7 KiB
C++
188 строки
6.7 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef GFX_ContainerLayerComposite_H
|
|
#define GFX_ContainerLayerComposite_H
|
|
|
|
#include "Layers.h" // for Layer (ptr only), etc
|
|
#include "mozilla/Attributes.h" // for MOZ_OVERRIDE
|
|
#include "mozilla/UniquePtr.h" // for UniquePtr
|
|
#include "mozilla/layers/LayerManagerComposite.h"
|
|
|
|
struct nsIntPoint;
|
|
struct nsIntRect;
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
class CompositableHost;
|
|
class CompositingRenderTarget;
|
|
struct PreparedData;
|
|
|
|
class ContainerLayerComposite : public ContainerLayer,
|
|
public LayerComposite
|
|
{
|
|
template<class ContainerT>
|
|
friend void ContainerPrepare(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const RenderTargetIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend void ContainerRender(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const RenderTargetIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend void RenderLayers(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const RenderTargetIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend void RenderIntermediate(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const nsIntRect& aClipRect,
|
|
RefPtr<CompositingRenderTarget> surface);
|
|
template<class ContainerT>
|
|
friend RefPtr<CompositingRenderTarget>
|
|
CreateTemporaryTargetAndCopyFromBackground(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const RenderTargetIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend RefPtr<CompositingRenderTarget>
|
|
CreateOrRecycleTarget(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const RenderTargetIntRect& aClipRect);
|
|
|
|
public:
|
|
explicit ContainerLayerComposite(LayerManagerComposite *aManager);
|
|
|
|
protected:
|
|
~ContainerLayerComposite();
|
|
|
|
public:
|
|
// LayerComposite Implementation
|
|
virtual Layer* GetLayer() MOZ_OVERRIDE { return this; }
|
|
|
|
virtual void SetLayerManager(LayerManagerComposite* aManager) MOZ_OVERRIDE
|
|
{
|
|
LayerComposite::SetLayerManager(aManager);
|
|
mManager = aManager;
|
|
|
|
for (Layer* l = GetFirstChild(); l; l = l->GetNextSibling()) {
|
|
LayerComposite* child = l->AsLayerComposite();
|
|
child->SetLayerManager(aManager);
|
|
}
|
|
}
|
|
|
|
virtual void Destroy() MOZ_OVERRIDE;
|
|
|
|
LayerComposite* GetFirstChildComposite() MOZ_OVERRIDE;
|
|
|
|
virtual void RenderLayer(const nsIntRect& aClipRect) MOZ_OVERRIDE;
|
|
virtual void Prepare(const RenderTargetIntRect& aClipRect) MOZ_OVERRIDE;
|
|
|
|
virtual void ComputeEffectiveTransforms(const gfx::Matrix4x4& aTransformToSurface) MOZ_OVERRIDE
|
|
{
|
|
DefaultComputeEffectiveTransforms(aTransformToSurface);
|
|
}
|
|
|
|
virtual void CleanupResources() MOZ_OVERRIDE;
|
|
|
|
virtual LayerComposite* AsLayerComposite() MOZ_OVERRIDE { return this; }
|
|
|
|
// container layers don't use a compositable
|
|
CompositableHost* GetCompositableHost() MOZ_OVERRIDE { return nullptr; }
|
|
|
|
// If the layer is marked as scale-to-resolution, add a post-scale
|
|
// to the layer's transform equal to the pres shell resolution we're
|
|
// scaling to. This cancels out the post scale of '1 / resolution'
|
|
// added by Layout. TODO: It would be nice to get rid of both of these
|
|
// post-scales.
|
|
virtual float GetPostXScale() const MOZ_OVERRIDE {
|
|
if (mScaleToResolution) {
|
|
return mPostXScale * mPresShellResolution;
|
|
}
|
|
return mPostXScale;
|
|
}
|
|
virtual float GetPostYScale() const MOZ_OVERRIDE {
|
|
if (mScaleToResolution) {
|
|
return mPostYScale * mPresShellResolution;
|
|
}
|
|
return mPostYScale;
|
|
}
|
|
|
|
virtual const char* Name() const MOZ_OVERRIDE { return "ContainerLayerComposite"; }
|
|
UniquePtr<PreparedData> mPrepared;
|
|
|
|
RefPtr<CompositingRenderTarget> mLastIntermediateSurface;
|
|
};
|
|
|
|
class RefLayerComposite : public RefLayer,
|
|
public LayerComposite
|
|
{
|
|
template<class ContainerT>
|
|
friend void ContainerPrepare(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const RenderTargetIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend void ContainerRender(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const nsIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend void RenderLayers(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const nsIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend void RenderIntermediate(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const nsIntRect& aClipRect,
|
|
RefPtr<CompositingRenderTarget> surface);
|
|
template<class ContainerT>
|
|
friend RefPtr<CompositingRenderTarget>
|
|
CreateTemporaryTargetAndCopyFromBackground(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const nsIntRect& aClipRect);
|
|
template<class ContainerT>
|
|
friend RefPtr<CompositingRenderTarget>
|
|
CreateTemporaryTarget(ContainerT* aContainer,
|
|
LayerManagerComposite* aManager,
|
|
const nsIntRect& aClipRect);
|
|
|
|
public:
|
|
explicit RefLayerComposite(LayerManagerComposite *aManager);
|
|
|
|
protected:
|
|
~RefLayerComposite();
|
|
|
|
public:
|
|
/** LayerOGL implementation */
|
|
Layer* GetLayer() MOZ_OVERRIDE { return this; }
|
|
|
|
void Destroy() MOZ_OVERRIDE;
|
|
|
|
LayerComposite* GetFirstChildComposite() MOZ_OVERRIDE;
|
|
|
|
virtual void RenderLayer(const nsIntRect& aClipRect) MOZ_OVERRIDE;
|
|
virtual void Prepare(const RenderTargetIntRect& aClipRect) MOZ_OVERRIDE;
|
|
|
|
virtual void ComputeEffectiveTransforms(const gfx::Matrix4x4& aTransformToSurface) MOZ_OVERRIDE
|
|
{
|
|
DefaultComputeEffectiveTransforms(aTransformToSurface);
|
|
}
|
|
|
|
virtual void CleanupResources() MOZ_OVERRIDE;
|
|
|
|
virtual LayerComposite* AsLayerComposite() MOZ_OVERRIDE { return this; }
|
|
|
|
// ref layers don't use a compositable
|
|
CompositableHost* GetCompositableHost() MOZ_OVERRIDE { return nullptr; }
|
|
|
|
virtual const char* Name() const MOZ_OVERRIDE { return "RefLayerComposite"; }
|
|
UniquePtr<PreparedData> mPrepared;
|
|
RefPtr<CompositingRenderTarget> mLastIntermediateSurface;
|
|
};
|
|
|
|
} /* layers */
|
|
} /* mozilla */
|
|
|
|
#endif /* GFX_ContainerLayerComposite_H */
|