summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2002-03-06 06:06:15 +0000
committerWerner Lemberg <wl@gnu.org>2002-03-06 06:06:15 +0000
commit47141eda3cd2b8260ea3ad51ced9c05ca8adb525 (patch)
tree28a95cb8f65c93d7102383d150adf64eba19db76
parent47a1dd82ca9b76ae7a111d37ca5f4a866bbf1a30 (diff)
downloadfreetype2-47141eda3cd2b8260ea3ad51ced9c05ca8adb525.tar.gz
* 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.
-rw-r--r--ChangeLog7
-rw-r--r--src/pshinter/pshglob.c22
-rw-r--r--src/pshinter/pshglob.h2
3 files changed, 19 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index d39ec8866..d855f5b8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 Werner Lemberg <wl@gnu.org>
* builds/unix/aclocal.m4, builds/unix/ltmain.sh: Update to libtool
diff --git a/src/pshinter/pshglob.c b/src/pshinter/pshglob.c
index db8989061..4e175a897 100644
--- a/src/pshinter/pshglob.c
+++ b/src/pshinter/pshglob.c
@@ -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 */
diff --git a/src/pshinter/pshglob.h b/src/pshinter/pshglob.h
index 1058fb172..cce4ed2e8 100644
--- a/src/pshinter/pshglob.h
+++ b/src/pshinter/pshglob.h
@@ -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;