HomeSort by relevance Sort by last modified time
    Searched refs:ft_coords (Results 1 - 2 of 2) sorted by null

  /external/harfbuzz_ng/src/
hb-ft.cc 700 FT_Fixed *ft_coords = (FT_Fixed *) calloc (mm_var->num_axis, sizeof (FT_Fixed)); local
702 if (coords && ft_coords)
704 if (!FT_Get_Var_Blend_Coordinates (ft_face, mm_var->num_axis, ft_coords))
710 coords[i] = ft_coords[i] >>= 2;
721 free (ft_coords);
840 FT_Fixed *ft_coords = (FT_Fixed *) calloc (num_coords, sizeof (FT_Fixed)); local
841 if (ft_coords)
844 ft_coords[i] = coords[i] << 2;
845 FT_Set_Var_Blend_Coordinates (ft_face, num_coords, ft_coords);
846 free (ft_coords);
    [all...]
  /external/harfbuzz_ng/util/
helper-cairo.cc 119 FT_Fixed *ft_coords = (FT_Fixed *) calloc (num_coords, sizeof (FT_Fixed)); local
120 if (ft_coords)
123 ft_coords[i] = coords[i] << 2;
124 FT_Set_Var_Blend_Coordinates (ft_face, num_coords, ft_coords);
125 free (ft_coords);

Completed in 59 milliseconds