aboutsummaryrefslogtreecommitdiff
path: root/src/text.c
AgeCommit message (Collapse)Author
2016-02-12Reviewed code TODOsraysan5
2016-01-18Corrected bug on fonts loadingraysan5
2016-01-02Improved fonts supportraysan5
Added LoadBMFont() to load AngelCode fonts (.fnt) Implemented LoadTTF() to load .ttf fonts (crappy packaging)
2015-12-30Added function: SubText()raysan5
Useful to get a piece of text, could be used for text typing animations
2015-12-09MeasureTextEx() - Added support for multi-line size measureraysan5
2015-12-09Corrected bugraysan5
2015-12-03Corrected bug on spritefont loadingraysan5
2015-11-05Variables initializationRay
2015-10-25Added some image manipulation functionsRay
Added (or completed functions): Image ImageText(const char *text, int fontSize, Color color); Image ImageTextEx(SpriteFont font, const char *text, int fontSize, int spacing, Color tint); void ImageFlipVertical(Image *image); void ImageFlipHorizontal(Image *image); void ImageColorTint(Image *image, Color color); void ImageColorInvert(Image *image); void ImageColorGrayscale(Image *image); void ImageColorContrast(Image *image, float contrast); void ImageColorBrightness(Image *image, int brightness);
2015-10-21Feature: Line-break support for textRay San
2015-10-06Convert to UTF-8raysan5
2015-10-06Added comments and more...raysan5
Corrected bug on defaultFont.size Renamed funcs: ImageConvertFormat() -> ImageFormat() ImageConvertToPOT() -> ImageToPOT()
2015-09-02Reviewed to work on Raspberry Piraysan5
[rlgl] Extensions strings loading was redone to avoid a Segmentation Fault on Raspberry Pi
2015-08-30Redesigned SpriteFont structraysan5
2015-08-28Small tweaksraysan5
2015-08-05Added trace log for data unloadingRay
2015-07-29Replaced old mail by twitter userraysan5
2015-07-13Added some functions and renamed some othersraysan5
Added: - LoadImageRaw() - ImageCopy() Renamed: - GetPixelData() -> GetImageData()
2015-07-05Improved mipmaps support and image loadingraysan5
2015-06-03Corrected gesture tap issue and text scaling issueMarc Palau
2015-05-11raymath module review and other changesraysan5
Complete review of matrix rotation math Check compressed textures support WIP: LoadImageFromData()
2015-05-04Big batch of changes, check description:raysan5
- Camera system moved to a separate module [camera.c] - WIP: Added customization functions for camera controls - Added custom shaders support on batch drawing - Complete redesign of textures module to support multiple texture formats (compressed and uncompressed)
2015-04-06Big batch of changes! Check description:raysan5
Support multiple texture formats (uncompressed and compressed) Postprocessing shaders support Model struct redefined and improved Extended loading functions for Textures and Models Simplified functions: DrawPlane(), DrawQuad() Deleted functions: DrawPlaneEx(), DrawGizmoEx() Now Text module only depends on Textures module Shapes: Reviewed functions to low lines/triangles usage Removed useless tabs and spaces around code
2015-03-09Added support for Latin-1 Supplement charactersnicobwah
Extended default raylib font system to support Latin-1 Supplement characters
2015-02-02Removed useless spacesraysan5
2015-01-18Adding support for TTF fonts (in progress)raysan5
2014-12-31Added full support for HTML5 (emscripten)raysan5
Corrected some bugs on the way... Automatically convert textures to POT on RPI and WEB
2014-12-15Added support for emscripten and moreraysan5
Added PLATFORM_WEB support (emscripten-webgl) [audio] Added LoadSoundFromWave() [textures] Added LoadTextureFromImage() to replace CreateTexture() Some TraceLogs edited...
2014-11-23Updated stb headersraysan5
2014-10-17Small Fixes Update (1.2.1)raysan5
View CHANGELOG for description on small fixes and add-ons
2014-09-16raylib 1.2raysan5
This is a huge update. Check CHANGELOG for details
2014-09-03Explicit define of functions prototypesraysan5
No-parameters functions use the prototype style FunctionName(void);
2014-09-03Removed useless spacesraysan5
2014-07-23Update to version 1.1.1raysan5
Check CHANGELOG for a detailed list of changes
2014-04-19raylib 1.1raysan5
View CHANGELOG for a detailed list of changes
2014-04-09Lots of changes, most of them under testing-reviewraysan5
Added a Tracing/Log system Added OGG stream music support (DOESN'T WORK) Added Compressed textures support * This update is probably very buggy...
2014-04-04Adapt multiple functions to rlglraysan5
Nearly a complete rework of Models module Some teaks on multiple functions
2014-03-25Road to raylib 1.1 - Testing rlglraysan5
2014-03-16Update to version 1.0.61.0.6raysan5
Check CHANGELOG for the list of changes in this release!
2014-01-28Update to version 1.0.5raysan5
Check CHANGELOG for changes
2013-12-27Corrected bug on spacing measurementraysan5
2013-12-19Update to version 1.0.3raysan5
View CHANGELOG for full list of changes
2013-11-29Added GetDefaultFont() functionRay
Useful to be used with DrawTextEx() to draw with default font and extended parameters
2013-11-28Added some functions and Updated examplesraysan5
View CHANGELOG for details
2013-11-23Replaced tab by 4 spaces and adjust textraysan5
2013-11-18raylib basic folders structure and some files... ;)Ray