/* -*- 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 friend void ContainerPrepare(ContainerT* aContainer, LayerManagerComposite* aManager, const RenderTargetIntRect& aClipRect); template friend void ContainerRender(ContainerT* aContainer, LayerManagerComposite* aManager, const RenderTargetIntRect& aClipRect); template friend void RenderLayers(ContainerT* aContainer, LayerManagerComposite* aManager, const RenderTargetIntRect& aClipRect); template friend void RenderIntermediate(ContainerT* aContainer, LayerManagerComposite* aManager, const nsIntRect& aClipRect, RefPtr surface); template friend RefPtr CreateTemporaryTargetAndCopyFromBackground(ContainerT* aContainer, LayerManagerComposite* aManager, const RenderTargetIntRect& aClipRect); template friend RefPtr CreateTemporaryTarget(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 Destroy() MOZ_OVERRIDE; LayerComposite* GetFirstChildComposite(); 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; } virtual const char* Name() const MOZ_OVERRIDE { return "ContainerLayerComposite"; } UniquePtr mPrepared; }; class RefLayerComposite : public RefLayer, public LayerComposite { template friend void ContainerPrepare(ContainerT* aContainer, LayerManagerComposite* aManager, const RenderTargetIntRect& aClipRect); template friend void ContainerRender(ContainerT* aContainer, LayerManagerComposite* aManager, const nsIntRect& aClipRect); template friend void RenderLayers(ContainerT* aContainer, LayerManagerComposite* aManager, const nsIntRect& aClipRect); template friend void RenderIntermediate(ContainerT* aContainer, LayerManagerComposite* aManager, const nsIntRect& aClipRect, RefPtr surface); template friend RefPtr CreateTemporaryTargetAndCopyFromBackground(ContainerT* aContainer, LayerManagerComposite* aManager, const nsIntRect& aClipRect); template friend RefPtr 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(); 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 mPrepared; }; } /* layers */ } /* mozilla */ #endif /* GFX_ContainerLayerComposite_H */