diff -r 000000000000 -r 6474c204b198 gfx/layers/client/ClientThebesLayer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gfx/layers/client/ClientThebesLayer.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,116 @@ +/* -*- Mode: C++; tab-width: 2; 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_CLIENTTHEBESLAYER_H +#define GFX_CLIENTTHEBESLAYER_H + +#include "ClientLayerManager.h" // for ClientLayerManager, etc +#include "Layers.h" // for ThebesLayer, etc +#include "RotatedBuffer.h" // for RotatedContentBuffer, etc +#include "mozilla/Attributes.h" // for MOZ_OVERRIDE +#include "mozilla/RefPtr.h" // for RefPtr +#include "mozilla/layers/ContentClient.h" // for ContentClient +#include "mozilla/mozalloc.h" // for operator delete +#include "nsDebug.h" // for NS_ASSERTION +#include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, etc +#include "nsRegion.h" // for nsIntRegion +#include "mozilla/layers/PLayerTransaction.h" // for ThebesLayerAttributes + +class gfxContext; + +namespace mozilla { +namespace layers { + +class CompositableClient; +class ShadowableLayer; +class SpecificLayerAttributes; + +class ClientThebesLayer : public ThebesLayer, + public ClientLayer { +public: + typedef RotatedContentBuffer::PaintState PaintState; + typedef RotatedContentBuffer::ContentType ContentType; + + ClientThebesLayer(ClientLayerManager* aLayerManager) : + ThebesLayer(aLayerManager, + static_cast(MOZ_THIS_IN_INITIALIZER_LIST())), + mContentClient(nullptr) + { + MOZ_COUNT_CTOR(ClientThebesLayer); + } + virtual ~ClientThebesLayer() + { + if (mContentClient) { + mContentClient->OnDetach(); + mContentClient = nullptr; + } + MOZ_COUNT_DTOR(ClientThebesLayer); + } + + virtual void SetVisibleRegion(const nsIntRegion& aRegion) + { + NS_ASSERTION(ClientManager()->InConstruction(), + "Can only set properties in construction phase"); + ThebesLayer::SetVisibleRegion(aRegion); + } + virtual void InvalidateRegion(const nsIntRegion& aRegion) + { + NS_ASSERTION(ClientManager()->InConstruction(), + "Can only set properties in construction phase"); + mInvalidRegion.Or(mInvalidRegion, aRegion); + mInvalidRegion.SimplifyOutward(20); + mValidRegion.Sub(mValidRegion, mInvalidRegion); + } + + virtual void RenderLayer(); + + virtual void ClearCachedResources() + { + if (mContentClient) { + mContentClient->Clear(); + } + mValidRegion.SetEmpty(); + DestroyBackBuffer(); + } + + virtual void FillSpecificAttributes(SpecificLayerAttributes& aAttrs) + { + aAttrs = ThebesLayerAttributes(GetValidRegion()); + } + + ClientLayerManager* ClientManager() + { + return static_cast(mManager); + } + + virtual Layer* AsLayer() { return this; } + virtual ShadowableLayer* AsShadowableLayer() { return this; } + + virtual CompositableClient* GetCompositableClient() MOZ_OVERRIDE + { + return mContentClient; + } + + virtual void Disconnect() + { + mContentClient = nullptr; + ClientLayer::Disconnect(); + } + +protected: + void PaintThebes(); + + void DestroyBackBuffer() + { + mContentClient = nullptr; + } + + RefPtr mContentClient; +}; + +} +} + +#endif