diff options
Diffstat (limited to 'core/fxcrt/fx_coordinates.cpp')
-rw-r--r-- | core/fxcrt/fx_coordinates.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/fxcrt/fx_coordinates.cpp b/core/fxcrt/fx_coordinates.cpp index db4bea945f..ac13a32329 100644 --- a/core/fxcrt/fx_coordinates.cpp +++ b/core/fxcrt/fx_coordinates.cpp @@ -199,6 +199,14 @@ FX_RECT CFX_FloatRect::ToRoundedFxRect() const { FXSYS_round(bottom)); } +#ifndef NDEBUG +std::ostream& operator<<(std::ostream& os, const CFX_FloatRect& rect) { + os << "rect[" << rect.Width() << "x" << rect.Height() << " (" << rect.left + << ", " << rect.bottom << ")]"; + return os; +} +#endif + CFX_Matrix CFX_Matrix::GetInverse() const { CFX_Matrix inverse; float i = a * d - b * c; |