summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorめぐみ発動機 (isVowel / GreenWing) <[email protected]>2021-11-22 02:06:20 +0900
committerGitHub <[email protected]>2021-11-21 18:06:20 +0100
commit478b70e53e2729a6976443a2bae2349e1e087dd3 (patch)
treebd2316a895ab903f2b32a06229d86d9bfeecfc53 /src
parent4d3c79f91fcc74b02da24ca0029681312f2b3037 (diff)
downloadraylib-478b70e53e2729a6976443a2bae2349e1e087dd3.tar.gz
raylib-478b70e53e2729a6976443a2bae2349e1e087dd3.zip
fixed typo: aproximation to approximation (#2163)
Diffstat (limited to 'src')
-rw-r--r--src/rlgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 2ef923ea..b0a6e974 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -418,7 +418,7 @@ typedef enum {
// NOTE 1: Filtering considers mipmaps if available in the texture
// NOTE 2: Filter is accordingly set for minification and magnification
typedef enum {
- RL_TEXTURE_FILTER_POINT = 0, // No filter, just pixel aproximation
+ RL_TEXTURE_FILTER_POINT = 0, // No filter, just pixel approximation
RL_TEXTURE_FILTER_BILINEAR, // Linear filtering
RL_TEXTURE_FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps)
RL_TEXTURE_FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x