[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[freetype2] ewaldhew-wip 98fa601 22/47: [seac] fix call
From: |
Hew Yih Shiuan Ewald |
Subject: |
[freetype2] ewaldhew-wip 98fa601 22/47: [seac] fix call |
Date: |
Thu, 6 Jul 2017 04:49:35 -0400 (EDT) |
branch: ewaldhew-wip
commit 98fa6014aedfa2e53d054a9e1f5d28016b0a7a24
Author: Ewald Hew <address@hidden>
Commit: Ewald Hew <address@hidden>
[seac] fix call
---
src/psaux/psintrp.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/src/psaux/psintrp.c b/src/psaux/psintrp.c
index 2d51261..d2b5d8b 100644
--- a/src/psaux/psintrp.c
+++ b/src/psaux/psintrp.c
@@ -1290,12 +1290,18 @@
{
FT_TRACE4(( " seac\n" ));
- return t1operator_seac( decoder,
- top[0], /* FT_Pos */
- top[1],
- top[2],
- Fix2Int( cf2_stack_popFixed(
opStack ) ), /* FT_Int */
- Fix2Int( cf2_stack_popFixed(
opStack ) ));
+
+ CF2_Int achar = cf2_stack_popInt( opStack );
+ CF2_Int bchar = cf2_stack_popInt( opStack );
+
+ FT_Pos ady = cf2_stack_popFixed ( opStack );
+ FT_Pos adx = cf2_stack_popFixed ( opStack );
+ FT_Pos asb = cf2_stack_popFixed ( opStack );
+
+ lastError = t1operator_seac( decoder,
+ asb, adx, ady,
+ bchar, achar );
+ goto exit;
}
}
break;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [freetype2] ewaldhew-wip 98fa601 22/47: [seac] fix call,
Hew Yih Shiuan Ewald <=