MathewWi / freetype-gl

Automatically exported from code.google.com/p/freetype-gl
Other
0 stars 0 forks source link

makefont does not produce a valid header #18

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

There is a missing teminating / in the license header comment.

The first character (-1) produces an unterminated quote.

Missing ,'s:
    At the end
        if( i < (vector_size(glyph->kerning)-1) )
    looks like it should be
        if( i < (glyph_count - 1) )

Original issue reported on code.google.com by whatmann...@gmail.com on 13 Mar 2012 at 3:12

GoogleCodeExporter commented 9 years ago
It should also probably include <stddef.h> for size_t and wchar_t

Original comment by whatmann...@gmail.com on 13 Mar 2012 at 3:17

GoogleCodeExporter commented 9 years ago
Thanks, it has been corrected.
If you want your name in the credits (instead of the pseudo) send me an email.

Nicolas

Original comment by Nicolas.Rougier@gmail.com on 21 Mar 2012 at 3:16