diff options
| author | Wilhem Barbier <[email protected]> | 2017-06-28 17:27:47 +0200 |
|---|---|---|
| committer | Wilhem Barbier <[email protected]> | 2017-06-28 17:27:47 +0200 |
| commit | 786cd63057d77e7987fe68986da6bca103c96415 (patch) | |
| tree | 791a8a4bc04a3ae8dd38d40058184587f4c5a068 /src/raylib.h | |
| parent | c3049a9b06490df865d92009dc80ad0683305128 (diff) | |
| download | raylib-786cd63057d77e7987fe68986da6bca103c96415.tar.gz raylib-786cd63057d77e7987fe68986da6bca103c96415.zip | |
Add a density parameter to GenImageRadialGradient
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index a9483f31..0a4ce091 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -877,7 +877,7 @@ 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 GenImageRadialGradient(int width, int height, float density, 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 |
