Sfoglia il codice sorgente

Fixed uninitialized variable warning

(cherry picked from commit 8a15a738f33f4cf1684d01e8b777e8b58fe393a5)
Sam Lantinga 2 anni fa
parent
commit
284cf11778
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/render/opengles2/SDL_render_gles2.c

+ 1 - 1
src/render/opengles2/SDL_render_gles2.c

@@ -493,7 +493,7 @@ GLES2_CacheProgram(GLES2_RenderData *data, GLuint vertex, GLuint fragment)
 static GLuint
 GLES2_CacheShader(GLES2_RenderData *data, GLES2_ShaderType type, GLenum shader_type)
 {
-    GLuint id;
+    GLuint id = 0;
     GLint compileSuccessful = GL_FALSE;
     int attempt, num_src;
     const GLchar *shader_src_list[2];