Added missing glutStrokeWidthf and glutStrokeLengthf for mobile support.

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1727 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2014-11-03 04:18:51 +00:00
parent c9c7ef6b84
commit 9089d1c682

View File

@ -35,8 +35,10 @@ void glutBitmapCharacter( void* font, int character ) {}
int glutBitmapWidth( void* font, int character ) { return 0; }
void glutStrokeCharacter( void* font, int character ) {}
int glutStrokeWidth( void* font, int character ) { return 0; }
GLfloat glutStrokeWidthf( void* font, int character ) { return 0.0f; }
int glutBitmapLength( void* font, const unsigned char* string ) { return 0; }
int glutStrokeLength( void* font, const unsigned char* string ) { return 0; }
GLfloat glutStrokeLengthf( void* font, const unsigned char *string ) { return 0.0f; }
void *glutGetMenuData( void ) { return NULL; }
void glutSetMenuData(void* data) {}