diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2019-06-26 10:21:07 +0700 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2019-06-26 10:21:07 +0700 |
| commit | 424c0f9d90b9672337b91d14a9a36d45ece29da6 (patch) | |
| tree | b2d8d26d20a7f17c56b7f6d33be1c44944e86a8c /util | |
| parent | fe159f4a37821cb66f8dfed1da51e31800412aff (diff) | |
Fix typos.
Diffstat (limited to 'util')
| -rw-r--r-- | util/sokol_cimgui.h | 2 | ||||
| -rw-r--r-- | util/sokol_gfx_cimgui.h | 2 | ||||
| -rw-r--r-- | util/sokol_gfx_imgui.h | 2 | ||||
| -rw-r--r-- | util/sokol_gl.h | 4 | ||||
| -rw-r--r-- | util/sokol_imgui.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/util/sokol_cimgui.h b/util/sokol_cimgui.h index e14999da..dd51ac77 100644 --- a/util/sokol_cimgui.h +++ b/util/sokol_cimgui.h @@ -22,7 +22,7 @@ SOKOL_CIMGUI_NO_SOKOL_APP - don't depend on sokol_app.h (see below for details) - Optionally provide the following macros before including the implementatuon + Optionally provide the following macros before including the implementation to override defaults: SOKOL_ASSERT(c) - your own assert macro (default: assert(c)) diff --git a/util/sokol_gfx_cimgui.h b/util/sokol_gfx_cimgui.h index 45f3a934..b73be352 100644 --- a/util/sokol_gfx_cimgui.h +++ b/util/sokol_gfx_cimgui.h @@ -15,7 +15,7 @@ sokol_gfx.h - Additionally, include the following files(s) beforing including + Additionally, include the following files(s) before including the implementation of sokol_gfx_imgui.h: imgui.h diff --git a/util/sokol_gfx_imgui.h b/util/sokol_gfx_imgui.h index 87138e60..96b38b26 100644 --- a/util/sokol_gfx_imgui.h +++ b/util/sokol_gfx_imgui.h @@ -17,7 +17,7 @@ sokol_gfx.h - Additionally, include the following files(s) beforing including + Additionally, include the following files(s) before including the implementation of sokol_gfx_imgui.h: imgui.h diff --git a/util/sokol_gl.h b/util/sokol_gl.h index 8d36975c..0a7f2ca2 100644 --- a/util/sokol_gl.h +++ b/util/sokol_gl.h @@ -224,7 +224,7 @@ sgl_scale(float x, float y, float z) NOTE that all angles in sokol-gl are in radians, not in degree. - Convert between radians and degree with the helper funtions: + Convert between radians and degree with the helper functions: float sgl_rad(float deg) - degrees to radians float sgl_deg(float rad) - radians to degrees @@ -315,7 +315,7 @@ ...which can return the following error codes: - SGL_NO_ERROR - all OK, no error occurded since last sgl_draw() + SGL_NO_ERROR - all OK, no error occurred since last sgl_draw() SGL_ERROR_VERTICES_FULL - internal vertex buffer is full (checked in sgl_end()) SGL_ERROR_UNIFORMS_FULL - the internal uniforms buffer is full (checked in sgl_end()) SGL_ERROR_COMMANDS_FULL - the internal command buffer is full (checked in sgl_end()) diff --git a/util/sokol_imgui.h b/util/sokol_imgui.h index e549397d..085bc4b3 100644 --- a/util/sokol_imgui.h +++ b/util/sokol_imgui.h @@ -24,7 +24,7 @@ SOKOL_IMGUI_NO_SOKOL_APP - don't depend on sokol_app.h (see below for details) - Optionally provide the following macros before including the implementatuon + Optionally provide the following macros before including the implementation to override defaults: SOKOL_ASSERT(c) - your own assert macro (default: assert(c)) |