Module: Mesa Branch: master Commit: bdaff25c2041a2399ee4d4b08764baa890531e22 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=bdaff25c2041a2399ee4d4b08764baa890531e22
Author: Timothy Arceri <[email protected]> Date: Wed May 3 15:56:03 2017 +1000 mesa: small _mesa_UseProgram() tidy up Makes the code easier to follow. Reviewed-by: Eric Anholt <[email protected]> --- src/mesa/main/shaderapi.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c index c41f006eb7..681b7306d1 100644 --- a/src/mesa/main/shaderapi.c +++ b/src/mesa/main/shaderapi.c @@ -1856,7 +1856,7 @@ void GLAPIENTRY _mesa_UseProgram(GLuint program) { GET_CURRENT_CONTEXT(ctx); - struct gl_shader_program *shProg; + struct gl_shader_program *shProg = NULL; if (MESA_VERBOSE & VERBOSE_API) _mesa_debug(ctx, "glUseProgram %u\n", program); @@ -1883,9 +1883,6 @@ _mesa_UseProgram(GLuint program) print_shader_info(shProg); } } - else { - shProg = NULL; - } /* The ARB_separate_shader_object spec says: * _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
