aboutsummaryrefslogtreecommitdiff
path: root/src/textures.c
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2016-09-07 23:14:16 +0200
committerRay <raysan5@gmail.com>2016-09-07 23:14:16 +0200
commit10280c4b91871065ea2fc15a3f3e939820f3e0a0 (patch)
tree9cff04510d3ce37642f124ac9d603e0eec1f638e /src/textures.c
parent36f20376e67c8f281467df74b82759c9a05d7018 (diff)
downloadraylib-10280c4b91871065ea2fc15a3f3e939820f3e0a0.tar.gz
raylib-10280c4b91871065ea2fc15a3f3e939820f3e0a0.zip
Some code tweaks
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c3
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)