diff options
| author | Wilhem Barbier <[email protected]> | 2017-06-28 15:29:56 +0200 |
|---|---|---|
| committer | Wilhem Barbier <[email protected]> | 2017-06-28 15:29:56 +0200 |
| commit | a0ac8ee2c4ce14a23deedeccf9911977e119749d (patch) | |
| tree | 8a0ad8fa3fd13fcac4f744f53c83a558fa70a506 /src/raylib.h | |
| parent | fcd13fd5d22219d8ed69b88e9cc1138b96b9a16d (diff) | |
| download | raylib-a0ac8ee2c4ce14a23deedeccf9911977e119749d.tar.gz raylib-a0ac8ee2c4ce14a23deedeccf9911977e119749d.zip | |
Add more image generation functions: radial gradient and perlin noise
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index 29cc5728..828c2fe9 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -876,8 +876,10 @@ RLAPI void ImageColorBrightness(Image *image, int brightness); // Image generation functions 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 GenImageRadialGradient(int width, int height, Color inner, Color outer); // Generate image: radial gradient RLAPI Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); // Generate image: checked RLAPI Image GenImageWhiteNoise(int width, int height, float factor); // Generate image: white noise +RLAPI Image GenImagePerlinNoise(int width, int height, float scale); // Generate image: perlin noise RLAPI Image GenImageCellular(int width, int height, int tileSize); // Generate image: cellular algorithm. Bigger tileSize means bigger cells // Texture2D configuration functions |
