[avar2] Clamp out values
This commit is contained in:
parent
d0e2ad9297
commit
d6c4f757a4
|
@ -195,7 +195,7 @@ struct avar
|
||||||
uint32_t varidx = varidx_map.map (i);
|
uint32_t varidx = varidx_map.map (i);
|
||||||
float delta = var_store.get_delta (varidx, coords, coords_length);
|
float delta = var_store.get_delta (varidx, coords, coords_length);
|
||||||
v += round (delta);
|
v += round (delta);
|
||||||
/* TODO Clamp v? */
|
v = hb_clamp (v, -(1<<14), +(1<<14));
|
||||||
out.push (v);
|
out.push (v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue