summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-10-06 21:20:36 +0200
committerraysan5 <[email protected]>2021-10-06 21:20:36 +0200
commit3e71232a04a7d570d139f019dfb873fff672878d (patch)
tree2bd98e1bcb67aa7a6d14544abf6d0a4f7a75be7e /src/raylib.h
parent700d448d75debea32572dc87cf3add0f755fed43 (diff)
downloadraylib-3e71232a04a7d570d139f019dfb873fff672878d.tar.gz
raylib-3e71232a04a7d570d139f019dfb873fff672878d.zip
WARNING: BREAKING: REMOVED: `GenImagePerlinNoise()`
raylib was using `stb_perlin.h` library to generate perlin noise, it seems that recently this library has been flagged as it could be infringing some algorythm patent. For security, it has been removed from raylib.
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index b1bcc3b9..ef737913 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1215,7 +1215,6 @@ RLAPI Image GenImageGradientH(int width, int height, Color left, Color right);
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, int offsetX, int offsetY, float scale); // Generate image: perlin noise
RLAPI Image GenImageCellular(int width, int height, int tileSize); // Generate image: cellular algorithm, bigger tileSize means bigger cells
// Image manipulation functions