summaryrefslogtreecommitdiffhomepage
path: root/src/rtext.c
AgeCommit message (Collapse)Author
2022-01-03ADDED: `ExportFontAsCode()`Ray
2021-12-31Update year to 2022raysan5
2021-12-28Detected some pixel-errors due to rounding issues on positionraysan5
2021-12-09REVIEWED: GetCodepoint() #2201Ray
2021-12-04Support custom modules inclusionRay
Allow to choose which modules are compiled with raylib, if some modules are excluded from compilation, required functionality is not available but smaller builds are possible.
2021-11-09Review variables initializationRay
- All variables are initialized on declaration, some arrays were not properly initialized - Static array buffers require memset() for re-initialization on every function call
2021-11-09Protect TextIsEqual from NULLs (#2121)Luke Krasnoff
2021-11-01Minor type tweakraysan5
2021-10-13Reviewed some TODORay
2021-10-12REVIEWED: LoadFontFromImage()Ray
Avoid crash on wrong sprite font
2021-10-03Minor format tweaksRay
2021-09-23Reviewed some TODO commentsRay
2021-09-22WARNING: MODULES RENAMING!!!Ray
raylib modules have been slightly renamed to add some identity and note that they are independent modules that can be used as standalone separate parts of raylib if required. The renamed modules are: - `core` -> `rcore` - `shapes` -> `rshapes` - `textures` -> `rtextures` - `text` -> `rtext` - `models` -> `rmodels` - `camera` -> `rcamera` - `gestures` -> `rgestures` - `core` -> `rcore` All the build systems has been adapted to this change.