testgles2_sdf: Call correct function to get shader info log

(cherry picked from commit b8c88cc584)
This commit is contained in:
capehill
2023-03-26 22:13:09 +03:00
committed by Sam Lantinga
parent 9ed1b778ed
commit 6ed29f47c9

View File

@@ -151,7 +151,7 @@ process_shader(GLuint *shader, const char * source, GLint shader_type)
/* Dump debug info (source and log) if compilation failed. */
if (status != GL_TRUE) {
ctx.glGetProgramInfoLog(*shader, sizeof(buffer), &length, &buffer[0]);
ctx.glGetShaderInfoLog(*shader, sizeof(buffer), &length, &buffer[0]);
buffer[length] = '\0';
SDL_Log("Shader compilation failed: %s", buffer);fflush(stderr);
quit(-1);