mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
Issue #1925 - Convert NS_SIDE_TO_FULL_CORNER to a constexpr function.
This commit is contained in:
parent
b0b13b8719
commit
2a399b60a1
3 changed files with 13 additions and 5 deletions
|
|
@ -479,6 +479,16 @@ constexpr bool SideIsVertical(Side aSide)
|
|||
return aSide % 2;
|
||||
}
|
||||
|
||||
/* @param aIsSecond: when true, return the clockwise second of the two
|
||||
* corners associated with aSide. For example, with aSide = eSideBottom the
|
||||
* result is eCornerBottomRight when aIsSecond is false, and
|
||||
* eCornerBottomLeft when aIsSecond is true.
|
||||
*/
|
||||
constexpr Corner SideToFullCorner(Side aSide, bool aIsSecond)
|
||||
{
|
||||
return Corner((aSide + aIsSecond) % 4);
|
||||
}
|
||||
|
||||
} // namespace mozilla
|
||||
|
||||
#endif /* MOZILLA_GFX_TYPES_H_ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue