diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -43,7 +43,7 @@ GLuint link_shaders(GLuint vert, GLuint frag) { void test(const char* label, GLuint shader) { printf("%s:\n", label); - // list all ACTIVE uniforms in shader: + // list all ACTIVE uniforms in shader GLint count; glGetProgramiv(shader, GL_ACTIVE_UNIFORMS, &count); printf("\tactive uniform count: %d\n", count); @@ -54,10 +54,9 @@ void test(const char* label, GLuint shader) { printf("\t(location = %u) = \"%.*s\"\n", i, length, name); } - // directly get uniform location + // try directly geting uniform location GLint uniform_location = glGetUniformLocation(shader, "test"); printf("\t`test` uniform location = %d\n", uniform_location); - } int main(int argc, char** argv) { |