gecko-dev/layout/style/StyleColorInlines.h
Emilio Cobos Álvarez 7980a72d0a Bug 760345 - Remove the last usage of lossy currentcolor. r=heycam
We don't have lossy currentcolor in the style system anymore, except for a
single property -moz-font-smoothing-background-color.

I could've converted it into a proper StyleColor and thread down all the
necessary information to the font metrics code.

But it doesn't really seem worth it given it's not exposed to the web, so I just
did the simplest thing, which is making currentcolor compute to transparent to
that specific property.

This patch also removes the stores_complex_colors_lossily code and related,
since now we always can cache computed colors.

Differential Revision: https://phabricator.services.mozilla.com/D26187

--HG--
extra : moz-landing-system : lando
2019-04-06 17:47:58 +00:00

63 lines
1.6 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
/* Inline functions for StyleColor (aka values::computed::Color) */
#ifndef mozilla_StyleColorInlines_h_
#define mozilla_StyleColorInlines_h_
#include "nsColor.h"
#include "mozilla/ServoStyleConsts.h"
namespace mozilla {
inline StyleRGBA StyleRGBA::FromColor(nscolor aColor) {
return {NS_GET_R(aColor), NS_GET_G(aColor), NS_GET_B(aColor),
NS_GET_A(aColor)};
}
inline nscolor StyleRGBA::ToColor() const {
return NS_RGBA(red, green, blue, alpha);
}
inline StyleRGBA StyleRGBA::Transparent() { return {0, 0, 0, 0}; }
template <>
inline StyleColor StyleColor::FromColor(nscolor aColor) {
return StyleColor::Numeric(StyleRGBA::FromColor(aColor));
}
template <>
inline StyleColor StyleColor::Black() {
return FromColor(NS_RGB(0, 0, 0));
}
template <>
inline StyleColor StyleColor::White() {
return FromColor(NS_RGB(255, 255, 255));
}
template <>
inline StyleColor StyleColor::Transparent() {
return FromColor(NS_RGBA(0, 0, 0, 0));
}
template <>
nscolor StyleColor::CalcColor(const StyleRGBA&) const;
template <>
nscolor StyleColor::CalcColor(nscolor) const;
template <>
nscolor StyleColor::CalcColor(const ComputedStyle&) const;
template <>
nscolor StyleColor::CalcColor(const nsIFrame*) const;
} // namespace mozilla
#endif // mozilla_StyleColor_h_