mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
72 lines
1.3 KiB
C++
72 lines
1.3 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/. */
|
|
|
|
#ifndef MOZILLA_GFX_TOOLS_H_
|
|
#define MOZILLA_GFX_TOOLS_H_
|
|
|
|
#include "Types.h"
|
|
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
|
#define hypotf _hypotf
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
namespace gfx {
|
|
|
|
static inline bool
|
|
IsOperatorBoundByMask(CompositionOp aOp) {
|
|
switch (aOp) {
|
|
case OP_IN:
|
|
case OP_OUT:
|
|
case OP_DEST_IN:
|
|
case OP_DEST_ATOP:
|
|
case OP_SOURCE:
|
|
return false;
|
|
default:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
template <class T>
|
|
struct ClassStorage
|
|
{
|
|
char bytes[sizeof(T)];
|
|
|
|
const T *addr() const { return (const T *)bytes; }
|
|
T *addr() { return (T *)(void *)bytes; }
|
|
};
|
|
|
|
static inline bool
|
|
FuzzyEqual(Float aA, Float aB, Float aErr)
|
|
{
|
|
if ((aA + aErr > aB) && (aA - aErr < aB)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static inline Float
|
|
Distance(Point aA, Point aB)
|
|
{
|
|
return hypotf(aB.x - aA.x, aB.y - aA.y);
|
|
}
|
|
|
|
static inline int
|
|
BytesPerPixel(SurfaceFormat aFormat)
|
|
{
|
|
switch (aFormat) {
|
|
case FORMAT_A8:
|
|
return 1;
|
|
case FORMAT_R5G6B5:
|
|
return 2;
|
|
default:
|
|
return 4;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* MOZILLA_GFX_TOOLS_H_ */
|