diff options
| author | raysan5 <[email protected]> | 2017-07-02 19:29:01 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2017-07-02 19:29:01 +0200 |
| commit | 6589c808b578732bc710c46fbc74ae73d427f99e (patch) | |
| tree | ecf2092156951c39254829b06bf414343d9680a0 /src/raylib.h | |
| parent | 5f0f87ecce7808c39b344e8304392d204a3773e6 (diff) | |
| download | raylib-6589c808b578732bc710c46fbc74ae73d427f99e.tar.gz raylib-6589c808b578732bc710c46fbc74ae73d427f99e.zip | |
Review some formatting for consistency
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 3d09eff0..04aa3b5a 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -876,7 +876,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, float density, Color inner, Color outer); // Generate image: radial gradient +RLAPI Image GenImageGradientRadial(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 |
