mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
56 lines
2.2 KiB
C++
56 lines
2.2 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/. */
|
|
|
|
#include "ColorLayerComposite.h"
|
|
#include "gfx2DGlue.h" // for ToMatrix4x4
|
|
#include "gfxColor.h" // for gfxRGBA
|
|
#include "mozilla/RefPtr.h" // for RefPtr
|
|
#include "mozilla/gfx/Matrix.h" // for Matrix4x4
|
|
#include "mozilla/gfx/Point.h" // for Point
|
|
#include "mozilla/gfx/Rect.h" // for Rect
|
|
#include "mozilla/gfx/Types.h" // for Color
|
|
#include "mozilla/layers/Compositor.h" // for Compositor
|
|
#include "mozilla/layers/CompositorTypes.h" // for DIAGNOSTIC_COLOR
|
|
#include "mozilla/layers/Effects.h" // for Effect, EffectChain, etc
|
|
#include "mozilla/mozalloc.h" // for operator delete, etc
|
|
#include "nsPoint.h" // for nsIntPoint
|
|
#include "nsRect.h" // for nsIntRect
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
void
|
|
ColorLayerComposite::RenderLayer(const nsIntRect& aClipRect)
|
|
{
|
|
EffectChain effects;
|
|
gfxRGBA color(GetColor());
|
|
effects.mPrimaryEffect = new EffectSolidColor(gfx::Color(color.r,
|
|
color.g,
|
|
color.b,
|
|
color.a));
|
|
nsIntRect boundRect = GetBounds();
|
|
|
|
LayerManagerComposite::AutoAddMaskEffect autoMaskEffect(GetMaskLayer(),
|
|
effects);
|
|
|
|
gfx::Rect rect(boundRect.x, boundRect.y,
|
|
boundRect.width, boundRect.height);
|
|
gfx::Rect clipRect(aClipRect.x, aClipRect.y,
|
|
aClipRect.width, aClipRect.height);
|
|
|
|
float opacity = GetEffectiveOpacity();
|
|
|
|
gfx::Matrix4x4 transform;
|
|
ToMatrix4x4(GetEffectiveTransform(), transform);
|
|
|
|
mCompositor->DrawQuad(rect, clipRect, effects, opacity, transform);
|
|
mCompositor->DrawDiagnostics(DIAGNOSTIC_COLOR,
|
|
rect, clipRect,
|
|
transform);
|
|
}
|
|
|
|
} /* layers */
|
|
} /* mozilla */
|