Remove program printf from client_imgui

This commit is contained in:
Kienan Stewart 2020-02-19 21:11:00 -05:00
parent b23bfbdcd8
commit baf1b1b808
1 changed files with 0 additions and 1 deletions

View File

@ -130,7 +130,6 @@ int main(int argc, char** argv)
// @see https://blog.conan.io/2019/06/26/An-introduction-to-the-Dear-ImGui-library.html // @see https://blog.conan.io/2019/06/26/An-introduction-to-the-Dear-ImGui-library.html
// 1st attribute buffer : vertices // 1st attribute buffer : vertices
GLuint p = find_shader_program_by_name("default", &shader_program_registry); GLuint p = find_shader_program_by_name("default", &shader_program_registry);
printf("Using program %d\n", p);
glUseProgram(p); glUseProgram(p);
glEnableVertexAttribArray(0); glEnableVertexAttribArray(0);
glBindBuffer(GL_ARRAY_BUFFER, vertexbuffer); glBindBuffer(GL_ARRAY_BUFFER, vertexbuffer);