summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2017-10-25 01:24:17 +0200
committerRay <[email protected]>2017-10-25 01:24:17 +0200
commit539a9ca50eda438df66e92327990b25e8c9c59fc (patch)
tree75ea287f8b200b8fa0461c7151d3085118b78bea /src/raylib.h
parentcbe0dcedfe885b69be8a8310840724ae0118afb3 (diff)
downloadraylib-539a9ca50eda438df66e92327990b25e8c9c59fc.tar.gz
raylib-539a9ca50eda438df66e92327990b25e8c9c59fc.zip
Corrected ImageTextEx()
- Added new function: GenImageColor() ImageDraw() should be reviewed... specially alpha blending...
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 392e0a24..3decb464 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -940,6 +940,7 @@ RLAPI void ImageColorContrast(Image *image, float contrast);
RLAPI void ImageColorBrightness(Image *image, int brightness); // Modify image color: brightness (-255 to 255)
// Image generation functions
+RLAPI Image GenImageColor(int width, int height, Color color); // Generate image: plain color
RLAPI Image GenImageGradientV(int width, int height, Color top, Color bottom); // Generate image: vertical gradient
RLAPI Image GenImageGradientH(int width, int height, Color left, Color right); // Generate image: horizontal gradient
RLAPI Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); // Generate image: radial gradient