Remove program printf from client_imgui
This commit is contained in:
parent
b23bfbdcd8
commit
baf1b1b808
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue