forked from mirrors/gecko-dev
		
	 5b5450146f
			
		
	
	
		5b5450146f
		
	
	
	
	
		
			
			Use new changes from cssparser and use the new lab/lch/oklab/oklch color formats. Introduced a new color type AbsoluteColor. It represents any kind of color that has absolute numerical values. It is also tied to a color space and therefore can be trivially converted to another color space. Differential Revision: https://phabricator.services.mozilla.com/D163579
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			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"
 | |
| #include "nsStyleUtil.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) / 255.0f};
 | |
| }
 | |
| 
 | |
| inline nscolor StyleRGBA::ToColor() const {
 | |
|   return NS_RGBA(red, green, blue, nsStyleUtil::FloatToColorComponent(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_
 |