mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
. Better fix. Just use 'short' variables and be done with it. The
structure members being dereferenced into the variables are 'short*' after all, not 'fastInt*'.
This commit is contained in:
parent
aaf675fb37
commit
61f99d643a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=196839
@ -2,12 +2,23 @@ $FreeBSD$
|
||||
|
||||
--- ../../j2se/src/share/native/sun/font/t2k/ttHints/HintScan.c 6 Mar 2007 16:53:10 -0000 1.1.1.2
|
||||
+++ ../../j2se/src/share/native/sun/font/t2k/ttHints/HintScan.c 31 Jul 2007 04:07:56 -0000
|
||||
@@ -34,7 +34,7 @@
|
||||
@@ -34,8 +34,6 @@
|
||||
|
||||
#include "HintScan.h"
|
||||
|
||||
-#include "cpu.h" //for fastint
|
||||
+#include "Hint.h" //for fastint
|
||||
|
||||
-
|
||||
/* copy macros as temporal solution - straightforward including cause compilation issues */
|
||||
#define F26Dot6ToFixed(x) ((x) << 10)
|
||||
#define IntToFixed(a) ((Fixed)(a) << 16)
|
||||
@@ -208,8 +206,8 @@
|
||||
F26Dot6 *v, tv, vmin, vmax, ctr;
|
||||
F26Dot6 xmin, xmax, ymin, ymax;
|
||||
tt_int32 n;
|
||||
- fastInt aPoint, startPoint, endPoint;
|
||||
- fastInt firstTime = true;
|
||||
+ short aPoint, startPoint, endPoint;
|
||||
+ short firstTime = true;
|
||||
tt_int32 numPts = 0;
|
||||
|
||||
if (t->numberOfContours > 0) {
|
||||
|
@ -2,12 +2,23 @@ $FreeBSD$
|
||||
|
||||
--- ../../j2se/src/share/native/sun/font/t2k/ttHints/HintScan.c 6 Mar 2007 16:53:10 -0000 1.1.1.2
|
||||
+++ ../../j2se/src/share/native/sun/font/t2k/ttHints/HintScan.c 31 Jul 2007 04:07:56 -0000
|
||||
@@ -34,7 +34,7 @@
|
||||
@@ -34,8 +34,6 @@
|
||||
|
||||
#include "HintScan.h"
|
||||
|
||||
-#include "cpu.h" //for fastint
|
||||
+#include "Hint.h" //for fastint
|
||||
|
||||
-
|
||||
/* copy macros as temporal solution - straightforward including cause compilation issues */
|
||||
#define F26Dot6ToFixed(x) ((x) << 10)
|
||||
#define IntToFixed(a) ((Fixed)(a) << 16)
|
||||
@@ -208,8 +206,8 @@
|
||||
F26Dot6 *v, tv, vmin, vmax, ctr;
|
||||
F26Dot6 xmin, xmax, ymin, ymax;
|
||||
tt_int32 n;
|
||||
- fastInt aPoint, startPoint, endPoint;
|
||||
- fastInt firstTime = true;
|
||||
+ short aPoint, startPoint, endPoint;
|
||||
+ short firstTime = true;
|
||||
tt_int32 numPts = 0;
|
||||
|
||||
if (t->numberOfContours > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user