mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a1bcd56fe8
Backed out changeset 6dd0a6cb9ab3 (bug 946958) Backed out changeset 498152aec5b1 (bug 946958) Backed out changeset 7d035322f51d (bug 946958) Backed out changeset 99f8ad7561ef (bug 946958) Backed out changeset 4639c5abea80 (bug 946958) Backed out changeset 9d1a4d83eccf (bug 865033) Backed out changeset 41839e4026bc (bug 865033)
150 lines
4.8 KiB
C++
150 lines
4.8 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 MOZILLA_GFX_BASICCOMPOSITOR_H
|
|
#define MOZILLA_GFX_BASICCOMPOSITOR_H
|
|
|
|
#include "mozilla/layers/Compositor.h"
|
|
#include "mozilla/layers/TextureHost.h"
|
|
#include "mozilla/gfx/2D.h"
|
|
#include "nsAutoPtr.h"
|
|
|
|
class gfxContext;
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
class BasicCompositingRenderTarget : public CompositingRenderTarget
|
|
{
|
|
public:
|
|
BasicCompositingRenderTarget(gfx::DrawTarget* aDrawTarget, const gfx::IntRect& aRect)
|
|
: CompositingRenderTarget(aRect.TopLeft())
|
|
, mDrawTarget(aDrawTarget)
|
|
, mSize(aRect.Size())
|
|
{ }
|
|
|
|
virtual gfx::IntSize GetSize() const MOZ_OVERRIDE { return mSize; }
|
|
|
|
virtual gfx::SurfaceFormat GetFormat() const MOZ_OVERRIDE
|
|
{
|
|
return mDrawTarget ? mDrawTarget->GetFormat()
|
|
: gfx::FORMAT_UNKNOWN;
|
|
}
|
|
|
|
RefPtr<gfx::DrawTarget> mDrawTarget;
|
|
gfx::IntSize mSize;
|
|
};
|
|
|
|
class BasicCompositor : public Compositor
|
|
{
|
|
public:
|
|
BasicCompositor(nsIWidget *aWidget);
|
|
|
|
virtual ~BasicCompositor();
|
|
|
|
|
|
virtual bool Initialize() MOZ_OVERRIDE { return true; };
|
|
|
|
virtual void Destroy() MOZ_OVERRIDE;
|
|
|
|
virtual TextureFactoryIdentifier GetTextureFactoryIdentifier() MOZ_OVERRIDE
|
|
{
|
|
return TextureFactoryIdentifier(LAYERS_BASIC,
|
|
XRE_GetProcessType(),
|
|
GetMaxTextureSize());
|
|
}
|
|
|
|
virtual TemporaryRef<CompositingRenderTarget>
|
|
CreateRenderTarget(const gfx::IntRect &aRect, SurfaceInitMode aInit) MOZ_OVERRIDE;
|
|
|
|
virtual TemporaryRef<CompositingRenderTarget>
|
|
CreateRenderTargetFromSource(const gfx::IntRect &aRect,
|
|
const CompositingRenderTarget *aSource,
|
|
const gfx::IntPoint &aSourcePoint) MOZ_OVERRIDE;
|
|
|
|
virtual TemporaryRef<DataTextureSource>
|
|
CreateDataTextureSource(TextureFlags aFlags = 0) MOZ_OVERRIDE;
|
|
|
|
virtual bool SupportsEffect(EffectTypes aEffect) MOZ_OVERRIDE;
|
|
|
|
virtual void SetRenderTarget(CompositingRenderTarget *aSource) MOZ_OVERRIDE
|
|
{
|
|
mRenderTarget = static_cast<BasicCompositingRenderTarget*>(aSource);
|
|
}
|
|
virtual CompositingRenderTarget* GetCurrentRenderTarget() MOZ_OVERRIDE
|
|
{
|
|
return mRenderTarget;
|
|
}
|
|
|
|
virtual void DrawQuad(const gfx::Rect& aRect,
|
|
const gfx::Rect& aClipRect,
|
|
const EffectChain &aEffectChain,
|
|
gfx::Float aOpacity,
|
|
const gfx::Matrix4x4 &aTransform) MOZ_OVERRIDE;
|
|
|
|
virtual void BeginFrame(const nsIntRegion& aInvalidRegion,
|
|
const gfx::Rect *aClipRectIn,
|
|
const gfxMatrix& aTransform,
|
|
const gfx::Rect& aRenderBounds,
|
|
gfx::Rect *aClipRectOut = nullptr,
|
|
gfx::Rect *aRenderBoundsOut = nullptr) MOZ_OVERRIDE;
|
|
virtual void EndFrame() MOZ_OVERRIDE;
|
|
virtual void EndFrameForExternalComposition(const gfxMatrix& aTransform) MOZ_OVERRIDE
|
|
{
|
|
NS_RUNTIMEABORT("We shouldn't ever hit this");
|
|
}
|
|
virtual void AbortFrame() MOZ_OVERRIDE;
|
|
|
|
virtual bool SupportsPartialTextureUpdate() { return true; }
|
|
virtual bool CanUseCanvasLayerForSize(const gfx::IntSize &aSize) MOZ_OVERRIDE { return true; }
|
|
virtual int32_t GetMaxTextureSize() const MOZ_OVERRIDE { return INT32_MAX; }
|
|
virtual void SetDestinationSurfaceSize(const gfx::IntSize& aSize) MOZ_OVERRIDE { }
|
|
virtual void SetTargetContext(gfx::DrawTarget* aTarget) MOZ_OVERRIDE
|
|
{
|
|
mCopyTarget = aTarget;
|
|
}
|
|
|
|
virtual void SetScreenRenderOffset(const ScreenPoint& aOffset) MOZ_OVERRIDE {
|
|
}
|
|
|
|
virtual void MakeCurrent(MakeCurrentFlags aFlags = 0) { }
|
|
|
|
virtual void PrepareViewport(const gfx::IntSize& aSize,
|
|
const gfxMatrix& aWorldTransform) MOZ_OVERRIDE { }
|
|
|
|
virtual void NotifyLayersTransaction() MOZ_OVERRIDE { }
|
|
|
|
virtual const char* Name() const { return "Basic"; }
|
|
|
|
virtual nsIWidget* GetWidget() const MOZ_OVERRIDE { return mWidget; }
|
|
virtual const nsIntSize& GetWidgetSize() MOZ_OVERRIDE
|
|
{
|
|
return mWidgetSize;
|
|
}
|
|
|
|
gfx::DrawTarget *GetDrawTarget() { return mDrawTarget; }
|
|
|
|
private:
|
|
// Widget associated with this compositor
|
|
nsIWidget *mWidget;
|
|
nsIntSize mWidgetSize;
|
|
|
|
// The final destination surface
|
|
RefPtr<gfx::DrawTarget> mDrawTarget;
|
|
// The current render target for drawing
|
|
RefPtr<BasicCompositingRenderTarget> mRenderTarget;
|
|
// An optional destination target to copy the results
|
|
// to after drawing is completed.
|
|
RefPtr<gfx::DrawTarget> mCopyTarget;
|
|
|
|
gfx::IntRect mInvalidRect;
|
|
nsIntRegion mInvalidRegion;
|
|
};
|
|
|
|
} // namespace layers
|
|
} // namespace mozilla
|
|
|
|
#endif /* MOZILLA_GFX_BASICCOMPOSITOR_H */
|