зеркало из https://github.com/mozilla/gecko-dev.git
44 строки
1.2 KiB
C++
44 строки
1.2 KiB
C++
/* -*- 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_WEBRENDERTEXTLAYER_H
|
|
#define GFX_WEBRENDERTEXTLAYER_H
|
|
|
|
#include "gfxUtils.h"
|
|
#include "Layers.h"
|
|
#include "mozilla/layers/WebRenderLayer.h"
|
|
#include "mozilla/layers/WebRenderLayerManager.h"
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
class WebRenderTextLayer : public WebRenderLayer,
|
|
public TextLayer {
|
|
public:
|
|
explicit WebRenderTextLayer(WebRenderLayerManager* aLayerManager)
|
|
: TextLayer(aLayerManager, static_cast<WebRenderLayer*>(this))
|
|
{
|
|
MOZ_COUNT_CTOR(WebRenderTextLayer);
|
|
}
|
|
|
|
protected:
|
|
virtual ~WebRenderTextLayer()
|
|
{
|
|
MOZ_COUNT_DTOR(WebRenderTextLayer);
|
|
}
|
|
|
|
public:
|
|
Layer* GetLayer() override { return this; }
|
|
void RenderLayer(wr::DisplayListBuilder& aBuilder,
|
|
const StackingContextHelper& aSc) override;
|
|
|
|
};
|
|
|
|
} // namespace layers
|
|
} // namespace mozilla
|
|
|
|
#endif // GFX_WEBRENDERTEXTLAYER_H
|