diff options
| author | Ray <raysan5@gmail.com> | 2016-09-07 23:14:16 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2016-09-07 23:14:16 +0200 |
| commit | 10280c4b91871065ea2fc15a3f3e939820f3e0a0 (patch) | |
| tree | 9cff04510d3ce37642f124ac9d603e0eec1f638e /src/textures.c | |
| parent | 36f20376e67c8f281467df74b82759c9a05d7018 (diff) | |
| download | raylib-10280c4b91871065ea2fc15a3f3e939820f3e0a0.tar.gz raylib-10280c4b91871065ea2fc15a3f3e939820f3e0a0.zip | |
Some code tweaks
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index 87ac1f85..5186c0ba 100644 --- a/src/textures.c +++ b/src/textures.c @@ -677,7 +677,8 @@ void ImageFormat(Image *image, int newFormat) } // Apply alpha mask to image -// NOTE: alphaMask must be should be same size as image +// NOTE 1: Returned image is RGBA - 32bit +// NOTE 2: alphaMask should be same size as image void ImageAlphaMask(Image *image, Image alphaMask) { if (image->format >= COMPRESSED_DXT1_RGB) |
