Home | History | Annotate | Download | only in src

Lines Matching refs:ft_coords

624     FT_Fixed *ft_coords = (FT_Fixed *) calloc (mm_var->num_axis, sizeof (FT_Fixed));
626 if (coords && ft_coords)
628 if (!FT_Get_Var_Blend_Coordinates (ft_face, mm_var->num_axis, ft_coords))
631 coords[i] = ft_coords[i] >>= 2;
636 free (ft_coords);
748 FT_Fixed *ft_coords = (FT_Fixed *) calloc (num_coords, sizeof (FT_Fixed));
749 if (ft_coords)
752 ft_coords[i] = coords[i] << 2;
753 FT_Set_Var_Blend_Coordinates (ft_face, num_coords, ft_coords);
754 free (ft_coords);