summaryrefslogtreecommitdiffhomepage
path: root/src/text.c
AgeCommit message (Collapse)Author
2018-12-25REVIEWED: LoadFontEx()raysan5
Changed parameters order for consistency with LoadFontData() and other functions when an array is passed by parameter and array size is the following parameter.
2018-12-20Exposed LoadFontFromImage()Ray
2018-12-18Support externally provided compilation flagsRay
Useful in case raylib compilation want to be automated and compilation config flags provided by command line.
2018-12-10Added support for .otf fontsRay
stb_truetype supports some .otf fonts, just exposed that functionality.
2018-12-04Increase text management buffers sizeRay
2018-11-06Remove end-line spacesRay
2018-10-29ADDED: Some functions...Ray
text: IsEqualText() -WIP- audio: SaveWAV() audio: ExportWaveAsCode() textures: ExportImageAsCode()
2018-10-24Code tweaksRay
2018-10-23ADDED: SplitText() functionRay
2018-10-18Some security checks on font loadingRay
2018-10-18Some formatting tweaksRay
2018-10-10Fixes memory leak in text.cnoshbar
GenImageFontAtlas() allocates an array of stbrp_rect for the packing functions, but it never frees them.
2018-09-17Improved data export capabilities!Ray
REVIEWED: ExportImage() REVIEWED: ExportMesh() ADDED: ExportWave() REMOVED: Internal funcs: SavePNG(), SaveBMP() NOTE: These changes break the API (parameters order)
2018-09-14Update mini_al to v0.8.8Ray
Some minor tweaks around
2018-09-06Support aliased font texture generationRay
Useful for bitmaps pixelated fonts where anti-aliasing is not desired! Change also enables additional font generation mechanisms in a future (cleartype, hinting...).
2018-09-05Corrected issue with typesRay
2018-08-06Reviewed spacings on latest PRRay
2018-08-04Fix compiler warnings, first partKim Kulling
2018-07-15Reviewed LoadFontData() and GenImageFontAtlas()Ray
2018-07-05Corrected issue with GetFontDefault()raysan5
Note for me: Replace All is NOT your friend...
2018-07-05Renamed GetDefaultFont() to GetFontDefault()raysan5
Library consistency rename... yes, I know, it breaks the API...
2018-06-30Re-added: LoadFontEx()Ray
2018-06-21Improved GenImageFontAtlas()Ray
2018-06-20Improved font generation and SDFRay
Added: data to CharInfo struct Added: LoadFontData() Added: GenImageFontAtlas() Removed: LoadFontEx() Removed: LoadTTF() [internal] Some code tweaks
2018-05-21Corrected possible memory leakraysan5
2018-05-20Some code review (mainly comments)raysan5
2018-05-17Header tweak and commentsRay
2018-05-04BREAKING CHANGE: Renamed SpriteFont type to FontRay San
- Preparing MP3 files support - Jumped version to raylib 2.0-dev (too many breaking changes...)
2018-05-04Rectangle parameters changed to floatRay San
- Some examples tweaks - Reviewed ImageFormat() - Use float for text fontSize
2018-04-07Refactor all #define SUPPORT_* into a config.hAhmad Fatoum
That way, a user needs only to touch a single file to configure what features raylib is built with. Include guards are left out intentionally, because config.h should only be included in source files, not headers. Later on, config.h can also define the raylib version (#461).
2018-02-25Don't exceed signed int range when shifting leftAhmad Fatoum
Fixes UB in #489, found by UBSan.
2018-02-25Fix possible buffer overflow in LoadBMFontAhmad Fatoum
Width specifier doesn't include NUL terminator. Fixes #487 found by AddressSanitizer.
2018-02-18Support UTF8 basic characters on ImageTextEx()raysan5
Supported UTF8 range equivalent to [128..255] (80h..FFh) Exposed and renamed text function GetGlyphIndex() Renamed spriteFont parameter name to simply font Small security check on transmission mission ending screen
2018-02-12Avoid rendering SPACE character!Ray
2018-01-28Corrected several issues...Ray
2017-12-20Updated copyright yearRay San
2017-12-14proper if-clauses for disabling functionality in text.cuser
2017-12-11Remove rres supportRay
Let the user choose if using rres external library
2017-11-02Some code tweaks...Ray San
2017-10-25Corrected issue with ttf font y-offsetRay
2017-08-27Added function DrawRectangleGradientEx()raysan5
Moved function DrawRectangleT() from text module to shapes Added some comments
2017-08-06Added function DrawRectangleT()raysan5
Usefult to draw rectangles using default font texture
2017-07-02Rename enum LogType names...raysan5
...to avoid possible conflicting symbols
2017-05-09Corrected issue #281Ray
2017-04-22Renamed function for lib consistencyraysan5
LoadSpriteFontTTF() --> LoadSpriteFontEx()
2017-04-21Make TraceLog() public to the APIRay
enum LogType could require some revision...
2017-04-04Minor code tweaksRay
2017-03-29Added IsFileExtension()Ray
Replaced old GetExtension() function Make IsFileExtension() public to the API
2017-03-29Remove RBMF fileformat supportRay
2017-03-26Work on configuration flagsRay