зеркало из https://github.com/mozilla/pjs.git
a part of bug 410748 (not fixes it) r+sr=roc, a=mtschrep
This commit is contained in:
Родитель
9df1541c90
Коммит
5451232d75
|
@ -38,7 +38,7 @@
|
|||
#ifndef GFX_POINT_H
|
||||
#define GFX_POINT_H
|
||||
|
||||
#include <math.h>
|
||||
#include "nsMathUtils.h"
|
||||
|
||||
#include "gfxTypes.h"
|
||||
|
||||
|
@ -142,8 +142,8 @@ struct THEBES_API gfxPoint {
|
|||
return gfxPoint(x / v, y / v);
|
||||
}
|
||||
gfxPoint& Round() {
|
||||
x = ::floor(x + 0.5);
|
||||
y = ::floor(y + 0.5);
|
||||
x = NS_round(x);
|
||||
y = NS_round(y);
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче