spelling: into

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-01-17 23:27:51 -05:00
parent 589527a236
commit 1acd9c17bb
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ See final bullet items below for more info on SIMD.
- Added STBI_MALLOC, STBI_REALLOC, and STBI_FREE macros for replacing - Added STBI_MALLOC, STBI_REALLOC, and STBI_FREE macros for replacing
the memory allocator. Unlike other STBI libraries, these macros don't the memory allocator. Unlike other STBI libraries, these macros don't
support a context parameter, so if you need to pass a context in to support a context parameter, so if you need to pass a context into
the allocator, you'll have to store it in a global or a thread-local the allocator, you'll have to store it in a global or a thread-local
variable. variable.

View File

@@ -6,6 +6,6 @@ in float Height;
void main() void main()
{ {
float h = (Height + 16)/32.0f; // shift and scale the height in to a grayscale value float h = (Height + 16)/32.0f; // shift and scale the height into a grayscale value
FragColor = vec4(h, h, h, 1.0); FragColor = vec4(h, h, h, 1.0);
} }