raylib/examples
Ray b4d67499a7 BREAKING CHANGE: Read description
Changes:

 - Font structure has been redesigned, CharInfo structure contained character rectangle within font texture, it has not much sense, considering that it was an information relative to the font atlas generated and not the character itself, so character rectangles have been moved out from CharInfo to Font.
 - CharInfo included a data parameters to contain character pixel data (usually grayscale), generated on TTF font generation. It was inconsistent with other fonts types, so, now CharInfo includes directly an Image of the glyph.
 - REDESIGNED: GenImageFontAtlas(), additional recs parameter added, loaded and filled inside the function to export atlas characters rectangles, instead of silently modify the input CharInfo data.
 - REVIEWED: ImageTextEx(), funtion retrieved the font atlas image from the GPU, that was slow and problematic in several platforms. Now it uses directly the CharInfo image. Support for unicode codepoints has also been added.
 - REDESIGNED: ImageDraw(), now it includes an additional parameter, the color tint, not only it could be useful for several situations but also function signature is more consistent with similar functions.
 - ADDED: ImageFromImage() to generate a new image from a piece of another image.
 - REVIEWED: GetNextCodepoint(), renamed parameters to be more clear.

Also all examples and games that were affected by those changes have been reviewed.
2019-07-24 15:05:14 +02:00
..
audio Remove old OpenAL comments 2019-06-29 11:26:31 +02:00
core Example instructions tweak for clarity 2019-05-31 16:42:16 +02:00
models Adding solar system examples. (#900) 2019-07-15 18:26:47 +02:00
network [rnet] module WIP (#809) 2019-04-22 20:03:00 +02:00
others Review variables initialization 2019-05-27 00:18:15 +02:00
physac Review variables initialization 2019-05-27 00:18:15 +02:00
shaders ADDED: shaders_basic_lighting 2019-06-14 12:59:40 +02:00
shapes Review variables initialization 2019-05-27 00:18:15 +02:00
text BREAKING CHANGE: Read description 2019-07-24 15:05:14 +02:00
textures BREAKING CHANGE: Read description 2019-07-24 15:05:14 +02:00
CMakeLists.txt Adding solar system examples. (#900) 2019-07-15 18:26:47 +02:00
examples_template.c Create examples_template.c 2019-05-03 17:56:58 +02:00
Makefile add multi channel audio to raudio (#895) 2019-06-29 10:49:42 +02:00
Makefile.Android Review Makefiles 2019-05-21 17:46:52 +02:00
raylib_compile_execute.bat Add WinMM library for linkage 2019-05-10 20:51:48 +02:00
raylib_makefile_example.bat