зеркало из https://github.com/mozilla/gecko-dev.git
241 строка
8.0 KiB
C++
241 строка
8.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 sts=2 ts=8 et tw=99 : */
|
|
/* 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_LAYERS_WEBRENDERAPI_H
|
|
#define MOZILLA_LAYERS_WEBRENDERAPI_H
|
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
|
#include "mozilla/Range.h"
|
|
#include "mozilla/webrender/webrender_ffi.h"
|
|
#include "mozilla/webrender/WebRenderTypes.h"
|
|
#include "GLTypes.h"
|
|
#include "Units.h"
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
class CompositorWidget;
|
|
}
|
|
|
|
namespace layers {
|
|
class CompositorBridgeParentBase;
|
|
class WebRenderBridgeParent;
|
|
}
|
|
|
|
namespace wr {
|
|
|
|
class DisplayListBuilder;
|
|
class RendererOGL;
|
|
class RendererEvent;
|
|
|
|
class WebRenderAPI
|
|
{
|
|
NS_INLINE_DECL_REFCOUNTING(WebRenderAPI);
|
|
|
|
public:
|
|
/// This can be called on the compositor thread only.
|
|
static already_AddRefed<WebRenderAPI> Create(bool aEnableProfiler,
|
|
layers::CompositorBridgeParentBase* aBridge,
|
|
RefPtr<widget::CompositorWidget>&& aWidget,
|
|
LayoutDeviceIntSize aSize);
|
|
|
|
wr::WindowId GetId() const { return mId; }
|
|
|
|
void GenerateFrame();
|
|
|
|
void SetWindowParameters(LayoutDeviceIntSize size);
|
|
void SetRootDisplayList(gfx::Color aBgColor,
|
|
Epoch aEpoch,
|
|
LayerSize aViewportSize,
|
|
WrPipelineId pipeline_id,
|
|
WrBuiltDisplayListDescriptor dl_descriptor,
|
|
uint8_t *dl_data,
|
|
size_t dl_size,
|
|
WrAuxiliaryListsDescriptor aux_descriptor,
|
|
uint8_t *aux_data,
|
|
size_t aux_size);
|
|
|
|
void ClearRootDisplayList(Epoch aEpoch,
|
|
WrPipelineId pipeline_id);
|
|
|
|
void SetRootPipeline(wr::PipelineId aPipeline);
|
|
|
|
void AddImage(wr::ImageKey aKey,
|
|
const ImageDescriptor& aDescriptor,
|
|
Range<uint8_t> aBytes);
|
|
|
|
void AddBlobImage(wr::ImageKey aKey,
|
|
const ImageDescriptor& aDescriptor,
|
|
Range<uint8_t> aBytes);
|
|
|
|
void AddExternalImageHandle(ImageKey key,
|
|
const ImageDescriptor& aDescriptor,
|
|
uint64_t aHandle);
|
|
|
|
void AddExternalImageBuffer(ImageKey key,
|
|
const ImageDescriptor& aDescriptor,
|
|
uint64_t aHandle);
|
|
|
|
void UpdateImageBuffer(wr::ImageKey aKey,
|
|
const ImageDescriptor& aDescriptor,
|
|
Range<uint8_t> aBytes);
|
|
|
|
void DeleteImage(wr::ImageKey aKey);
|
|
|
|
void AddRawFont(wr::FontKey aKey, Range<uint8_t> aBytes);
|
|
|
|
void DeleteFont(wr::FontKey aKey);
|
|
|
|
void SetProfilerEnabled(bool aEnabled);
|
|
|
|
void RunOnRenderThread(UniquePtr<RendererEvent> aEvent);
|
|
void Readback(gfx::IntSize aSize, uint8_t *aBuffer, uint32_t aBufferSize);
|
|
|
|
void Pause();
|
|
bool Resume();
|
|
|
|
WrIdNamespace GetNamespace();
|
|
GLint GetMaxTextureSize() const { return mMaxTextureSize; }
|
|
bool GetUseANGLE() const { return mUseANGLE; }
|
|
|
|
protected:
|
|
WebRenderAPI(WrAPI* aRawApi, wr::WindowId aId, GLint aMaxTextureSize, bool aUseANGLE)
|
|
: mWrApi(aRawApi)
|
|
, mId(aId)
|
|
, mMaxTextureSize(aMaxTextureSize)
|
|
, mUseANGLE(aUseANGLE)
|
|
{}
|
|
|
|
~WebRenderAPI();
|
|
// Should be used only for shutdown handling
|
|
void WaitFlushed();
|
|
|
|
WrAPI* mWrApi;
|
|
wr::WindowId mId;
|
|
GLint mMaxTextureSize;
|
|
bool mUseANGLE;
|
|
|
|
friend class DisplayListBuilder;
|
|
friend class layers::WebRenderBridgeParent;
|
|
};
|
|
|
|
/// This is a simple C++ wrapper around WrState defined in the rust bindings.
|
|
/// We may want to turn this into a direct wrapper on top of WebRenderFrameBuilder
|
|
/// instead, so the interface may change a bit.
|
|
class DisplayListBuilder {
|
|
public:
|
|
explicit DisplayListBuilder(wr::PipelineId aId);
|
|
DisplayListBuilder(DisplayListBuilder&&) = default;
|
|
|
|
~DisplayListBuilder();
|
|
|
|
void Begin(const LayerIntSize& aSize);
|
|
|
|
void End();
|
|
wr::BuiltDisplayList Finalize();
|
|
|
|
void PushStackingContext(const WrRect& aBounds, // TODO: We should work with strongly typed rects
|
|
const WrRect& aOverflow,
|
|
const WrImageMask* aMask, // TODO: needs a wrapper.
|
|
const float aOpacity,
|
|
const gfx::Matrix4x4& aTransform,
|
|
const WrMixBlendMode& aMixBlendMode);
|
|
|
|
void PopStackingContext();
|
|
|
|
void PushBuiltDisplayList(wr::BuiltDisplayList dl);
|
|
|
|
void PushScrollLayer(const WrRect& aBounds, // TODO: We should work with strongly typed rects
|
|
const WrRect& aOverflow,
|
|
const WrImageMask* aMask); // TODO: needs a wrapper.
|
|
|
|
void PopScrollLayer();
|
|
|
|
|
|
void PushRect(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
const WrColor& aColor);
|
|
|
|
void PushLinearGradient(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
const WrPoint& aStartPoint,
|
|
const WrPoint& aEndPoint,
|
|
const nsTArray<WrGradientStop>& aStops,
|
|
wr::GradientExtendMode aExtendMode);
|
|
|
|
void PushRadialGradient(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
const WrPoint& aCenter,
|
|
const WrSize& aRadius,
|
|
const nsTArray<WrGradientStop>& aStops,
|
|
wr::GradientExtendMode aExtendMode);
|
|
|
|
void PushImage(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
wr::ImageRendering aFilter,
|
|
wr::ImageKey aImage);
|
|
|
|
void PushIFrame(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
wr::PipelineId aPipeline);
|
|
|
|
void PushBorder(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
const WrBorderWidths& aWidths,
|
|
const WrBorderSide& aTop,
|
|
const WrBorderSide& aRight,
|
|
const WrBorderSide& aBbottom,
|
|
const WrBorderSide& aLeft,
|
|
const WrBorderRadius& aRadius);
|
|
|
|
void PushBorderImage(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
const WrBorderWidths& aWidths,
|
|
wr::ImageKey aImage,
|
|
const WrNinePatchDescriptor& aPatch,
|
|
const WrSideOffsets2Df32& aOutset,
|
|
const WrRepeatMode& aRepeatHorizontal,
|
|
const WrRepeatMode& aRepeatVertical);
|
|
|
|
void PushText(const WrRect& aBounds,
|
|
const WrClipRegion& aClip,
|
|
const gfx::Color& aColor,
|
|
wr::FontKey aFontKey,
|
|
Range<const WrGlyphInstance> aGlyphBuffer,
|
|
float aGlyphSize);
|
|
|
|
void PushBoxShadow(const WrRect& aRect,
|
|
const WrClipRegion& aClip,
|
|
const WrRect& aBoxBounds,
|
|
const WrPoint& aOffset,
|
|
const WrColor& aColor,
|
|
const float& aBlurRadius,
|
|
const float& aSpreadRadius,
|
|
const float& aBorderRadius,
|
|
const WrBoxShadowClipMode& aClipMode);
|
|
|
|
WrClipRegion BuildClipRegion(const WrRect& aMain,
|
|
const WrImageMask* aMask = nullptr);
|
|
WrClipRegion BuildClipRegion(const WrRect& aMain,
|
|
const nsTArray<WrComplexClipRegion>& aComplex,
|
|
const WrImageMask* aMask = nullptr);
|
|
|
|
// Try to avoid using this when possible.
|
|
WrState* Raw() { return mWrState; }
|
|
protected:
|
|
WrState* mWrState;
|
|
|
|
friend class WebRenderAPI;
|
|
};
|
|
|
|
Maybe<WrImageFormat>
|
|
SurfaceFormatToWrImageFormat(gfx::SurfaceFormat aFormat);
|
|
|
|
} // namespace wr
|
|
} // namespace mozilla
|
|
|
|
#endif
|