diff options
| author | Ray <[email protected]> | 2023-05-21 11:35:25 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-05-21 11:35:25 +0200 |
| commit | 84ae26cdc0ab22e7721552647cd6c30d8a478bae (patch) | |
| tree | b2aa888a1c10a84cf7151dc0d9d048ff934b285a /src | |
| parent | e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989 (diff) | |
| download | raylib-84ae26cdc0ab22e7721552647cd6c30d8a478bae.tar.gz raylib-84ae26cdc0ab22e7721552647cd6c30d8a478bae.zip | |
Update raylib.h
Diffstat (limited to 'src')
| -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 edc81c34..02d8e444 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1239,7 +1239,7 @@ RLAPI bool ExportImageAsCode(Image image, const char *fileName); // Image generation functions RLAPI Image GenImageColor(int width, int height, Color color); // Generate image: plain color -RLAPI Image GenImageGradientLinear(int width, int height, int direction, Color start, Color end); // Generate image: linear gradient +RLAPI Image GenImageGradientLinear(int width, int height, int direction, Color start, Color end); // Generate image: linear gradient, direction in degrees [0..360], 0=Vertical 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 |
