* src/pshinter/pshglob.h (PSH_DimensionRec): s/std/stdw/.
* src/pshinter/pshglob.c (psh_global_scale_widths, psh_dimension_snap_width, psh_globals_destroy, psh_globals_new): Ditto.
This commit is contained in:
parent
ec208f00fe
commit
7178d1e35f
|
@ -1,3 +1,10 @@
|
|||
2002-03-06 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/pshinter/pshglob.h (PSH_DimensionRec): s/std/stdw/.
|
||||
* src/pshinter/pshglob.c (psh_global_scale_widths,
|
||||
psh_dimension_snap_width, psh_globals_destroy, psh_globals_new):
|
||||
Ditto.
|
||||
|
||||
2002-03-05 David Turner <david@freetype.org>
|
||||
|
||||
* src/type1/t1objs.c (T1_Face_Init),
|
||||
|
|
|
@ -42,9 +42,9 @@
|
|||
FT_UInt direction )
|
||||
{
|
||||
PSH_Dimension dim = &globals->dimension[direction];
|
||||
PSH_Widths std = &dim->std;
|
||||
FT_UInt count = std->count;
|
||||
PSH_Width width = std->widths;
|
||||
PSH_Widths stdw = &dim->stdw;
|
||||
FT_UInt count = stdw->count;
|
||||
PSH_Width width = stdw->widths;
|
||||
FT_Fixed scale = dim->scale_mult;
|
||||
|
||||
|
||||
|
@ -67,13 +67,13 @@
|
|||
FT_Pos reference = width;
|
||||
|
||||
|
||||
for ( n = 0; n < dimension->std.count; n++ )
|
||||
for ( n = 0; n < dimension->stdw.count; n++ )
|
||||
{
|
||||
FT_Pos w;
|
||||
FT_Pos dist;
|
||||
|
||||
|
||||
w = dimension->std.widths[n].cur;
|
||||
w = dimension->stdw.widths[n].cur;
|
||||
dist = width - w;
|
||||
if ( dist < 0 )
|
||||
dist = -dist;
|
||||
|
@ -560,8 +560,8 @@
|
|||
|
||||
|
||||
memory = globals->memory;
|
||||
globals->dimension[0].std.count = 0;
|
||||
globals->dimension[1].std.count = 0;
|
||||
globals->dimension[0].stdw.count = 0;
|
||||
globals->dimension[1].stdw.count = 0;
|
||||
|
||||
globals->blues.normal_top.count = 0;
|
||||
globals->blues.normal_bottom.count = 0;
|
||||
|
@ -597,7 +597,7 @@
|
|||
/* copy standard widths */
|
||||
{
|
||||
PSH_Dimension dim = &globals->dimension[1];
|
||||
PSH_Width write = dim->std.widths;
|
||||
PSH_Width write = dim->stdw.widths;
|
||||
|
||||
|
||||
write->org = priv->standard_width[1];
|
||||
|
@ -611,13 +611,13 @@
|
|||
read++;
|
||||
}
|
||||
|
||||
dim->std.count = write - dim->std.widths;
|
||||
dim->stdw.count = write - dim->stdw.widths;
|
||||
}
|
||||
|
||||
/* copy standard heights */
|
||||
{
|
||||
PSH_Dimension dim = &globals->dimension[0];
|
||||
PSH_Width write = dim->std.widths;
|
||||
PSH_Width write = dim->stdw.widths;
|
||||
|
||||
|
||||
write->org = priv->standard_height[1];
|
||||
|
@ -631,7 +631,7 @@
|
|||
read++;
|
||||
}
|
||||
|
||||
dim->std.count = write - dim->std.widths;
|
||||
dim->stdw.count = write - dim->stdw.widths;
|
||||
}
|
||||
|
||||
/* copy blue zones */
|
||||
|
|
|
@ -82,7 +82,7 @@ FT_BEGIN_HEADER
|
|||
|
||||
typedef struct PSH_DimensionRec_
|
||||
{
|
||||
PSH_WidthsRec std;
|
||||
PSH_WidthsRec stdw;
|
||||
FT_Fixed scale_mult;
|
||||
FT_Fixed scale_delta;
|
||||
|
||||
|
|
Loading…
Reference in New Issue