Added new text sample: text_bmfont_unordered

BMFont loading has been improved to support unordered chars and extended
characters (up to 255)
This commit is contained in:
raysan5
2016-11-21 19:49:54 +01:00
parent 481ce3d39d
commit bdbb1eb901
6 changed files with 258 additions and 1 deletions

View File

@ -229,6 +229,7 @@ EXAMPLES = \
text_font_select \
text_writing_anim \
text_ttf_loading \
text_bmfont_unordered \
models_geometric_shapes \
models_box_collisions \
models_billboard \
@ -418,6 +419,10 @@ text_writing_anim: text_writing_anim.c
text_ttf_loading: text_ttf_loading.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)
# compile [text] example - text bmfont unordered
text_bmfont_unordered: text_bmfont_unordered.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)
# compile [models] example - basic geometric 3d shapes
models_geometric_shapes: models_geometric_shapes.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)