summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
AgeCommit message (Collapse)Author
2018-11-30Some tweaksRay
2018-11-27Reimplement ImageAlphaCrop()Ray
2018-11-09ADDED: OpenURL()Ray
Corrected bug on ImageDrawRectangleLines()
2018-11-07Modifies some Image functionsRay
REVIEWED: ImageDrawRectangle() ADDED: ImageDrawRectangleLines()
2018-11-06Remove end-line spacesRay
2018-10-29Corrected typoRay
2018-10-29ADDED: Some functions...Ray
text: IsEqualText() -WIP- audio: SaveWAV() audio: ExportWaveAsCode() textures: ExportImageAsCode()
2018-10-18Some formatting tweaksRay
2018-10-10Minor tweaksRay
2018-10-08ADDED: ImageExtractPalette()Ray
2018-10-01Review void pointer incrementationRay
2018-10-01Support KXT image file exportRay
[textures] Added SaveKTX() [rlgl] Exposed rlGetGlTextureFormats()
2018-09-17Support ExportImage() as raw pixel dataRay
Added note on KTX 2.2
2018-09-17Support image exportRay
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-05Corrected issue with font tintRay
2018-08-09Merge pull request #616 from overdev/masterRay
[Feature Request] 9-patch drawing function
2018-08-08Update textures.cJorge A. Gomes
See raylib/examples/textures/textures_image_9patch.c for how to use `DrawTextureNPatch` function.
2018-08-06Reviewed spacings on latest PRRay
2018-08-05Fix compiler warings in texture.c and more.Kim Kulling
2018-08-03Update textures.cJorge A. Gomes
Added support form vertical and horizontal 3-patches. Corrected the distortion caused when destRec size is smaller than 4x4. Now even 1x10 or 0x0 sizes are drawn correctly.
2018-08-03Update textures.cJorge A. Gomes
Added DrawNinePatch() function implementation.
2018-07-29Fix typo (s/proedural/procedural)Ahmad Fatoum
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-07-03Added function: ImageColorReplace()Ray
2018-07-02Removed function prototypeRay
This function was added in text module as GenImageFontAtlas()
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-06-12Reviewed some functionsRay
- GetImageData() - GetImageDataNormalized()
2018-06-12Comment reviewRay San
2018-06-12Added function: GetImageDataNormalized()Ray San
Reviewed: GetImageData() Reviewed: ImageFormat()
2018-06-12Corrected bugRay San
2018-06-10Propose new function: GenImageFont()raysan5
2018-06-06Some comments cleaningRay
ImageDraw() code tweak
2018-06-03Added ImageRotate*() functionsRay
2018-06-02Corrected issue with function definitionRay
2018-06-02Work on ImageResizeCanvas()Ray
2018-06-01Added: ImageResizeCanvas() -WIP-Ray
Added note idea on ImageFormat() for future redesign (to support 16bit-32bit pixel-formats)
2018-05-30Removed assert()Ray
Not used in raylib this mechanism
2018-05-29Replaced tabs by spacesRay
2018-05-28Corrected issue with floats on TCCRay
It seems TCC was not casting correctly int values to float in some specific situations
2018-05-22Added a noteRay San
2018-05-21cmake: Fix PLATFORM_WEB buildAhmad Fatoum
Did this ever work? Surely, doesn't look like it...
2018-05-17Header tweak and commentsRay
2018-05-12Corrected issue on LoadASTC()Ray
2018-05-09Corrected issue on rectangle drawingRay
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-29Corrected alpha blending on ImageDraw()raysan5
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).