* src/pcf/pcfread (pcf_get_accell): Fix parsing of accelerator
tables.
This commit is contained in:
parent
7d6784e0c7
commit
567caf08f3
|
@ -1,3 +1,8 @@
|
|||
2002-04-16 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
|
||||
|
||||
* src/pcf/pcfread (pcf_get_accell): Fix parsing of accelerator
|
||||
tables.
|
||||
|
||||
2002-04-15 David Turner <david@freetype.org>
|
||||
|
||||
* docs/FTL.txt: Formatting.
|
||||
|
|
|
@ -819,21 +819,29 @@ THE SOFTWARE.
|
|||
goto Bail;
|
||||
}
|
||||
|
||||
error = pcf_get_metric( stream, format, &(accel->minbounds) );
|
||||
error = pcf_get_metric( stream,
|
||||
format & ( ~PCF_FORMAT_MASK ),
|
||||
&(accel->minbounds) );
|
||||
if ( error )
|
||||
goto Bail;
|
||||
|
||||
error = pcf_get_metric( stream, format, &(accel->maxbounds) );
|
||||
error = pcf_get_metric( stream,
|
||||
format & ( ~PCF_FORMAT_MASK ),
|
||||
&(accel->maxbounds) );
|
||||
if ( error )
|
||||
goto Bail;
|
||||
|
||||
if ( PCF_FORMAT_MATCH( format, PCF_ACCEL_W_INKBOUNDS ) )
|
||||
{
|
||||
error = pcf_get_metric( stream, format, &(accel->ink_minbounds) );
|
||||
error = pcf_get_metric( stream,
|
||||
format & ( ~PCF_FORMAT_MASK ),
|
||||
&(accel->ink_minbounds) );
|
||||
if ( error )
|
||||
goto Bail;
|
||||
|
||||
error = pcf_get_metric( stream, format, &(accel->ink_maxbounds) );
|
||||
error = pcf_get_metric( stream,
|
||||
format & ( ~PCF_FORMAT_MASK ),
|
||||
&(accel->ink_maxbounds) );
|
||||
if ( error )
|
||||
goto Bail;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue