aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2018-07-29 13:03:08 +0200
committerAhmad Fatoum <ahmad@a3f.at>2018-07-29 13:04:16 +0200
commit548dbeb1ca1e62a4893bb7041228915a97cd5b0e (patch)
tree7cf305beb0f4c3e5a1212a94e4dc796d3d88d614 /src
parent6905a875eda7e1ac85b768f5aa4e07dc92537bdb (diff)
downloadraylib-548dbeb1ca1e62a4893bb7041228915a97cd5b0e.tar.gz
raylib-548dbeb1ca1e62a4893bb7041228915a97cd5b0e.zip
Fix typo (s/proedural/procedural)
Diffstat (limited to 'src')
-rw-r--r--src/CMakeOptions.txt2
-rw-r--r--src/config.h4
-rw-r--r--src/config.h.in2
-rw-r--r--src/textures.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/CMakeOptions.txt b/src/CMakeOptions.txt
index 79f09414..c8af55a0 100644
--- a/src/CMakeOptions.txt
+++ b/src/CMakeOptions.txt
@@ -45,7 +45,7 @@ option(SUPPORT_FONT_TEXTURE "Draw rectangle shapes using font texture white char
option(SUPPORT_QUADS_DRAW_MODE "Use QUADS instead of TRIANGLES for drawing when possible. Some lines-based shapes could still use lines" ON)
# textures.c
-option(SUPPORT_IMAGE_GENERATION "Support proedural image generation functionality (gradient, spot, perlin-noise, cellular)" ON)
+option(SUPPORT_IMAGE_GENERATION "Support procedural image generation functionality (gradient, spot, perlin-noise, cellular)" ON)
option(SUPPORT_FILEFORMAT_PNG "Support loading PNG as textures" ON)
option(SUPPORT_FILEFORMAT_DDS "Support loading DDS as textures" ON)
option(SUPPORT_FILEFORMAT_HDR "Support loading HDR as textures" ON)
diff --git a/src/config.h b/src/config.h
index a889fd0c..317df46b 100644
--- a/src/config.h
+++ b/src/config.h
@@ -86,10 +86,10 @@
//#define SUPPORT_FILEFORMAT_PKM 1
//#define SUPPORT_FILEFORMAT_PVR 1
-// Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop...
+// Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop...
// If not defined only three image editing functions supported: ImageFormat(), ImageAlphaMask(), ImageToPOT()
#define SUPPORT_IMAGE_MANIPULATION 1
-// Support proedural image generation functionality (gradient, spot, perlin-noise, cellular)
+// Support procedural image generation functionality (gradient, spot, perlin-noise, cellular)
#define SUPPORT_IMAGE_GENERATION 1
diff --git a/src/config.h.in b/src/config.h.in
index 91f734b3..f9d474cd 100644
--- a/src/config.h.in
+++ b/src/config.h.in
@@ -44,7 +44,7 @@
/* Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop... If not defined only three image editing functions supported: ImageFormat(), ImageAlphaMask(), ImageToPOT() */
#cmakedefine SUPPORT_IMAGE_MANIPULATION 1
-/* Support proedural image generation functionality (gradient, spot, perlin-noise, cellular) */
+/* Support procedural image generation functionality (gradient, spot, perlin-noise, cellular) */
#cmakedefine SUPPORT_IMAGE_GENERATION 1
// text.c
diff --git a/src/textures.c b/src/textures.c
index 94498c3c..3530e115 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -24,7 +24,7 @@
* If not defined only three image editing functions supported: ImageFormat(), ImageAlphaMask(), ImageToPOT()
*
* #define SUPPORT_IMAGE_GENERATION
-* Support proedural image generation functionality (gradient, spot, perlin-noise, cellular)
+* Support procedural image generation functionality (gradient, spot, perlin-noise, cellular)
*
* DEPENDENCIES:
* stb_image - Multiple image formats loading (JPEG, PNG, BMP, TGA, PSD, GIF, PIC)