Ray
f1bcfc1352
Corrected bug on GenTextureMipmaps()
texture.mipmaps value needs to be updated, so, texture must be passed by
reference instead of by value
8 years ago
raysan5
6d1b712a96
Reviewed modules comments
8 years ago
raysan5
673dcf9436
Comments tweaks
8 years ago
raysan5
988d39029f
Support textures filtering
8 years ago
raysan5
5c80f65082
Funtions added to set texture parameters
SetTextureFilter()
SetTextureWrap()
8 years ago
raysan5
6d34adbd60
Improving sprite fonts support...
Support grayscale (8 bit) textures for fonts
Load unordered chars data above char 126
8 years ago
Ray
8f60996b64
Corrected some warnings
8 years ago
Ray
b4a3f294bf
Correct warning
8 years ago
raysan5
4a65b19f0f
Simplify supported image formats
Removed support for some unusual image formats
8 years ago
raysan5
7f0880a735
Review spacing formatting
raylib uses spaces between '+' and '-' signs but not between '*' and '/'
signs, it's a chosen convention
8 years ago
raysan5
173f199313
Corrected text drawing within an image
8 years ago
Ray
10280c4b91
Some code tweaks
9 years ago
Ray
9d66bc4a05
Added function: ImageAlphaMask()
9 years ago
raysan5
a9ab516dae
Formatting tweaks
9 years ago
raysan5
959a228815
Removed useless spacing
9 years ago
raysan5
f69f930b51
Some functions review
9 years ago
raysan5
afe033412b
Code tweak
9 years ago
Ray
29d505c98e
Reorganize external libraries - BREAKING CHANGE -
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.
9 years ago
Ray
17878550b1
Review heades usage
This is a first step toward a bigger project. Some modules could be
ported to header-only to be used as standalone.
9 years ago
raysan5
897179a06c
Corrected some issues on OpenGL 1.1
9 years ago
raysan5
ea5b00528b
Improved render to texture
Support render texture size different than screen size
9 years ago
raysan5
aa22d97983
Simplified texture flip and added comments
9 years ago
raysan5
66b096d978
Added support for render to texture (use RenderTexture2D)
Now it's possible to render to texture, old postprocessing system will
be removed on next raylib version.
9 years ago
raysan5
8b7ca8b670
Review comments
9 years ago
raysan5
d0e7195a16
Added new functions to draw text on image
9 years ago
raysan5
fffbf48dec
Added support for Nearest-Neighbor image scaling
Specially useful on default font scaling
9 years ago
raysan5
823abf666e
Reviewed code TODOs
9 years ago
raysan5
95da97fa74
Fixed bug: rlglGenerateMipmaps()
9 years ago
raysan5
b804f38150
Small code tweaks
9 years ago
raysan5
5dbb93dbb4
Added function: ImageDither()
Corrected some code details
9 years ago
raysan5
2bd7245508
DrawTextureRec() function review to allow flipped rectangle
9 years ago
Ray
88e1fd9530
Added texture retrieval support on OpenGL ES 2.0
Updated functions:
Image GetTextureData(Texture2D texture);
void *rlglReadTexturePixels(Texture2D texture);
9 years ago
Ray
76024b5036
Added some texture functionality (view details)
LoadTextureEx() - Simplified parameters
UpdateTexture() - Added, allows updating GPU texture data
9 years ago
Ray
67423ff64b
Removed unneeded comment
9 years ago
Ray San
fb4105cf8a
Corrected bug on web
9 years ago
Ray
afdf357fbe
Added some image manipulation functions
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);
9 years ago
Ray
8c117cfb57
Reviewed NPOT messages and usage
9 years ago
raysan5
9bf411f580
Added a bunch of image manipulation functions:
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()
9 years ago
raysan5
4879106096
Reviewed to work on Raspberry Pi
[rlgl] Extensions strings loading was redone to avoid a Segmentation
Fault on Raspberry Pi
10 years ago
raysan5
d7e7ef6a7d
Added some comments
10 years ago
raysan5
9dd20577cd
Corrected bugs on DDS and PKM loading
10 years ago
raysan5
07858c3a1f
Reviewed ImageConvertToPOT()
10 years ago
raysan5
6da175fccb
Reviewed GetTextureData()
10 years ago
Ray
a42bfa7794
Added trace log for data unloading
10 years ago
raysan5
7834a4e2fc
Replaced old mail by twitter user
10 years ago
raysan5
66556b8b47
Added some functions and renamed some others
Added:
- LoadImageRaw()
- ImageCopy()
Renamed:
- GetPixelData() -> GetImageData()
10 years ago
raysan5
c944d62374
Improved mipmaps support and image loading
10 years ago
raysan5
fd851d1d8b
Improved custom shaders support
Corrected issues with textures loading
10 years ago
Gatonevermind
4e4b6bef21
Corrected bug on PVR textures loading
10 years ago
raysan5
a7714c842f
raymath module review and other changes
Complete review of matrix rotation math
Check compressed textures support
WIP: LoadImageFromData()
10 years ago