X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffg_font.c;h=7502a0be9045326a5fd8821b6d117668cdde3f53;hb=207c3128bf025b5e025bace5c0425d380dd72aa9;hp=9e739490733eab8f8ed3236c034f7d2819a055c6;hpb=223d7dc01950904a061a1151955f24c4a098c3e4;p=freeglut diff --git a/src/fg_font.c b/src/fg_font.c index 9e73949..7502a0b 100644 --- a/src/fg_font.c +++ b/src/fg_font.c @@ -1,5 +1,5 @@ /* - * freeglut_font.c + * fg_font.c * * Bitmap and stroke fonts displaying. * @@ -37,7 +37,7 @@ /* -- IMPORT DECLARATIONS -------------------------------------------------- */ /* - * These are the font faces defined in freeglut_font_data.c file: + * These are the font faces defined in fg_font_data.c file: */ extern SFG_Font fgFontFixed8x13; extern SFG_Font fgFontFixed9x15; @@ -346,7 +346,7 @@ void FGAPIENTRY glutStrokeString( void* fontID, const unsigned char *string ) /* * Return the width in pixels of a stroke character */ -int FGAPIENTRY glutStrokeWidth( void* fontID, int character ) +GLfloat FGAPIENTRY glutStrokeWidthf( void* fontID, int character ) { const SFG_StrokeChar *schar; SFG_StrokeFont* font; @@ -364,17 +364,21 @@ int FGAPIENTRY glutStrokeWidth( void* fontID, int character ) schar = font->Characters[ character ]; freeglut_return_val_if_fail( schar, 0 ); - return ( int )( schar->Right + 0.5 ); + return schar->Right; +} +int FGAPIENTRY glutStrokeWidth(void* fontID, int character) +{ + return ( int )( glutStrokeWidthf(fontID,character) + 0.5f ); } /* * Return the width of a string drawn using a stroke font */ -int FGAPIENTRY glutStrokeLength( void* fontID, const unsigned char* string ) +GLfloat FGAPIENTRY glutStrokeLengthf( void* fontID, const unsigned char* string ) { unsigned char c; - float length = 0.0; - float this_line_length = 0.0; + GLfloat length = 0.0; + GLfloat this_line_length = 0.0; SFG_StrokeFont* font; FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutStrokeLength" ); font = fghStrokeByID( fontID ); @@ -404,7 +408,11 @@ int FGAPIENTRY glutStrokeLength( void* fontID, const unsigned char* string ) } if( length < this_line_length ) length = this_line_length; - return( int )( length + 0.5 ); + return length; +} +int FGAPIENTRY glutStrokeLength( void* fontID, const unsigned char* string ) +{ + return( int )( glutStrokeLengthf(fontID,string) + 0.5f ); } /*