summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
AgeCommit message (Collapse)Author
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).
2018-04-05Remove unnecesary NPOT checkRay
Now PLATFORM checks only used on core and utils modules
2018-04-05Simplified some codeRay
2018-04-04Added: ImageDrawRectangle()Ray
Renamed SaveImageAs() to ExportImage() for consistency on what actually happens with data.
2018-04-03Review ImageDraw() alpha blendingRay
Not sure if math is ok... just left a commented piece of code that uses pre-multiplied alpha.
2018-04-02Fix use after freeMartinfx
2018-02-18Added comments to review function ImageTextEx()raysan5
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-01-28Corrected several issues...Ray
2018-01-23Review mipmaps generation issueRay
When changing image format, mipmaps are lost and regenerated from scratch
2018-01-22Improved pixel formats supportRay
Review rlLoadTexture() function to make it simpler, now OpenGL texture glInternalFormat, glFormat and glType are retrieved with new function GetGlFormats()
2018-01-18MSVC: Fix void pointer arithmetic errorAhmad Fatoum
GNU C allows it as a compiler extension, but MSVC doesn't.
2018-01-18Added function: ImageMipmaps()Ray
2018-01-17Reviewed function GenImagePerlinNoise()Ray
Added support for noise image offset
2018-01-11Added new function: ImageAlphaCrop()Ray
2018-01-07Added new image functionsraysan5
- Added: ImageAlphaClear() - Added: ImageAlphaPremultiply() - Reorganized some functions
2018-01-06Review float pixel format textures supportraysan5
2018-01-06Improved pixel formats supportraysan5
- Renamed enum TextureFormat to PixelFormat for consistency - Added support for pixel format UNCOMPRESSED_R32 - Using GetPixelDataSize() where required
2018-01-06Added function: GetPixelDataSize()raysan5
Just found I need that function...
2017-12-28Minor tweaksraysan5
2017-12-28Support UNCOMPRESSED_R32G32B32A32 texture formatraysan5
2017-12-20Corrected issue with SaveImageAs()Ray San
That function depends on SavePNG() and forces platform check on textures module, that behaviour should be changed, platform definition should be only required on core module...
2017-12-15Manually review previous PRRay San
2017-12-14added proper define checks for png-save if it's disableduser