From aa75721e94a06aa3383799e7471ccae0cc597a4e Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 15 Sep 2024 21:56:56 +0100 Subject: [PATCH] Update VBO explanation --- src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cc b/src/main.cc index 4109fed..96f7ff2 100644 --- a/src/main.cc +++ b/src/main.cc @@ -31,7 +31,7 @@ struct App { GLuint vao; // The buffer that contains all the vertex data - // e.g. assume 3 vertices with position, colour and uv + // e.g. assume 3 vertices with position, colour and uv, the buffer would look like this // ----------------------------------------------------------------------------------- // | position1 | colour1 | uv1 | position2 | colour2 | uv2 | position3 | colour3 | uv3 | // -----------------------------------------------------------------------------------