2017-10-28 02:10:06 +03:00
|
|
|
/* -*- 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
|
2017-04-14 21:11:02 +03:00
|
|
|
* 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_GFX_FONTVARIATION_H_
|
|
|
|
#define MOZILLA_GFX_FONTVARIATION_H_
|
|
|
|
|
2018-08-01 20:02:18 +03:00
|
|
|
#include <stdint.h>
|
2021-04-02 15:37:23 +03:00
|
|
|
#include "mozilla/FloatingPoint.h"
|
2018-08-01 20:02:18 +03:00
|
|
|
|
2021-04-02 15:37:23 +03:00
|
|
|
namespace mozilla::gfx {
|
2017-04-14 21:11:02 +03:00
|
|
|
|
|
|
|
// An OpenType variation tag and value pair
|
|
|
|
struct FontVariation {
|
|
|
|
uint32_t mTag;
|
|
|
|
float mValue;
|
|
|
|
|
|
|
|
bool operator==(const FontVariation& aOther) const {
|
2021-04-02 15:37:23 +03:00
|
|
|
return mTag == aOther.mTag &&
|
|
|
|
NumbersAreBitwiseIdentical(mValue, aOther.mValue);
|
2017-04-14 21:11:02 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-04-02 15:37:23 +03:00
|
|
|
} // namespace mozilla::gfx
|
2017-04-14 21:11:02 +03:00
|
|
|
|
|
|
|
#endif /* MOZILLA_GFX_FONTVARIATION_H_ */
|