summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
AgeCommit message (Collapse)Author
2016-11-22Corrected bug on GenTextureMipmaps()Ray
texture.mipmaps value needs to be updated, so, texture must be passed by reference instead of by value
2016-11-16Reviewed modules commentsraysan5
2016-10-31Comments tweaksraysan5
2016-10-29Support textures filteringraysan5
2016-10-27Funtions added to set texture parametersraysan5
SetTextureFilter() SetTextureWrap()
2016-10-24Improving sprite fonts support...raysan5
Support grayscale (8 bit) textures for fonts Load unordered chars data above char 126
2016-10-17Corrected some warningsRay
2016-10-09Correct warningRay
2016-09-22Simplify supported image formatsraysan5
Removed support for some unusual image formats
2016-09-12Review spacing formattingraysan5
raylib uses spaces between '+' and '-' signs but not between '*' and '/' signs, it's a chosen convention
2016-09-12Corrected text drawing within an imageraysan5
2016-09-07Some code tweaksRay
2016-09-05Added function: ImageAlphaMask()Ray
2016-08-31Formatting tweaksraysan5
2016-08-16Removed useless spacingraysan5
2016-08-07Some functions reviewraysan5
2016-06-21Code tweakraysan5
2016-06-06Reorganize external libraries - BREAKING CHANGE -Ray
Moved all external libraries used by raylib to external folder inside raylib src. Makefile has already been update and also the different includes in raylib modules.
2016-06-02Review heades usageRay
This is a first step toward a bigger project. Some modules could be ported to header-only to be used as standalone.
2016-06-01Corrected some issues on OpenGL 1.1raysan5
2016-05-29Improved render to textureraysan5
Support render texture size different than screen size
2016-04-07Simplified texture flip and added commentsraysan5
2016-03-30Added support for render to texture (use RenderTexture2D)raysan5
Now it's possible to render to texture, old postprocessing system will be removed on next raylib version.
2016-03-27Review commentsraysan5
2016-03-06Added new functions to draw text on imageraysan5
2016-03-02Added support for Nearest-Neighbor image scalingraysan5
Specially useful on default font scaling
2016-02-12Reviewed code TODOsraysan5
2016-01-04Fixed bug: rlglGenerateMipmaps()raysan5
2016-01-02Small code tweaksraysan5
2015-12-30Added function: ImageDither()raysan5
Corrected some code details
2015-12-09DrawTextureRec() function review to allow flipped rectangleraysan5
2015-11-05Added texture retrieval support on OpenGL ES 2.0Ray
Updated functions: Image GetTextureData(Texture2D texture); void *rlglReadTexturePixels(Texture2D texture);
2015-11-04Added some texture functionality (view details)Ray
LoadTextureEx() - Simplified parameters UpdateTexture() - Added, allows updating GPU texture data
2015-10-27Removed unneeded commentRay
2015-10-26Corrected bug on webRay San
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-24Reviewed NPOT messages and usageRay
2015-10-06Added a bunch of image manipulation functions:raysan5
Renamed functions (for coherence with new ones): - ImageConvertToPOT() -> ImageToPOT() - ImageConvertFormat() -> ImageFormat() New functions added (IN PROGRESS): - ImageCopy() - ImageCrop() - ImageResize() (Uses stb_image_resize.h) - ImageDraw() - ImageDrawText() - ImageDrawTextEx() - ImageFlipVertical() - ImageFlipHorizontal() - ImageColorInvert() - ImageColorGrayscale() - ImageColorContrast() - ImageColorBrightness()
2015-09-02Reviewed to work on Raspberry Piraysan5
[rlgl] Extensions strings loading was redone to avoid a Segmentation Fault on Raspberry Pi
2015-08-30Added some commentsraysan5
2015-08-29Corrected bugs on DDS and PKM loadingraysan5
2015-08-07Reviewed ImageConvertToPOT()raysan5
2015-08-07Reviewed GetTextureData()raysan5
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-05-21Improved custom shaders supportraysan5
Corrected issues with textures loading
2015-05-11Corrected bug on PVR textures loadingGatonevermind
2015-05-11raymath module review and other changesraysan5
Complete review of matrix rotation math Check compressed textures support WIP: LoadImageFromData()