clear stack after vsindex op
This commit is contained in:
parent
7fed7d80f7
commit
ae8fd0dbfb
|
@ -243,6 +243,7 @@ struct CFF2CSOpSet : CSOpSet<BlendArg, OPSET, CFF2CSInterpEnv, PARAM, PATH>
|
||||||
static inline void process_vsindex (CFF2CSInterpEnv &env, PARAM& param)
|
static inline void process_vsindex (CFF2CSInterpEnv &env, PARAM& param)
|
||||||
{
|
{
|
||||||
env.process_vsindex ();
|
env.process_vsindex ();
|
||||||
|
env.clear_args ();
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -347,6 +347,7 @@ struct CFF2PrivateDictOpSet : DictOpSet
|
||||||
case OpCode_vsindexdict:
|
case OpCode_vsindexdict:
|
||||||
env.process_vsindex ();
|
env.process_vsindex ();
|
||||||
dictval.ivs = env.get_ivs ();
|
dictval.ivs = env.get_ivs ();
|
||||||
|
env.clear_args ();
|
||||||
break;
|
break;
|
||||||
case OpCode_blenddict:
|
case OpCode_blenddict:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue