Skip to content

Commit 15e57f6

Browse files
authoredFeb 19, 2024
Merge pull request #123 from NoahFreelove/master
Fixed some typos in tutorial files and shaders
2 parents bfbf041 + 9416c0b commit 15e57f6

File tree

49 files changed

+129
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+129
-132
lines changed
 

‎misc04_building_your_own_app/playground2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ int main( void )
2121
#endif
2222

2323

24-
// Initialise GLFW
24+
// Initialize GLFW
2525
if( !glfwInit() )
2626
{
2727
fprintf( stderr, "Failed to initialize GLFW\n" );

‎misc05_picking/misc05_picking_BulletPhysics.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void ScreenPosToWorldRay(
8686

8787
int main( void )
8888
{
89-
// Initialise GLFW
89+
// Initialize GLFW
9090
if( !glfwInit() )
9191
{
9292
fprintf( stderr, "Failed to initialize GLFW\n" );
@@ -135,7 +135,7 @@ int main( void )
135135

136136
// Enable depth test
137137
glEnable(GL_DEPTH_TEST);
138-
// Accept fragment if it closer to the camera than the former one
138+
// Accept fragment if it is closer to the camera than the former one
139139
glDepthFunc(GL_LESS);
140140

141141
// Cull triangles which normal is not towards the camera

0 commit comments

Comments
 (0)
Please sign in to comment.