summaryrefslogtreecommitdiff
path: root/progs/util/shaderutil.c
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2009-12-07 18:13:57 -0500
committerZack Rusin <zackr@vmware.com>2009-12-07 18:13:57 -0500
commit45412c2343a3ed1de388aca6a5ae25c49918c9bc (patch)
tree44303c67e10949cad86ed1bf1fe818c397288e7b /progs/util/shaderutil.c
parent9b5f260756356a73984d60c907c525b8a2f8cf94 (diff)
parentcad14c2542698de144bb5434cefa02d7a00aaa74 (diff)
Merge remote branch 'origin/master' into arb_geometry_shader4arb_geometry_shader4
Conflicts: src/gallium/auxiliary/tgsi/tgsi_exec.c src/mesa/glapi/glapitemp.h src/mesa/glapi/glprocs.h src/mesa/main/enums.c src/mesa/main/remap_helper.h src/mesa/state_tracker/st_atom_shader.c src/mesa/state_tracker/st_program.c src/mesa/state_tracker/st_program.h
Diffstat (limited to 'progs/util/shaderutil.c')
-rw-r--r--progs/util/shaderutil.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/progs/util/shaderutil.c b/progs/util/shaderutil.c
index af50d64f51..4fb3199a19 100644
--- a/progs/util/shaderutil.c
+++ b/progs/util/shaderutil.c
@@ -34,7 +34,8 @@ ShadersSupported(void)
fprintf(stderr, "Warning: Trying ARB GLSL instead of OpenGL 2.x. This may not work.\n");
return GL_TRUE;
}
- return GL_TRUE;
+ fprintf(stderr, "Sorry, GLSL not supported with this OpenGL.\n");
+ return GL_FALSE;
}
@@ -95,6 +96,7 @@ CompileShaderFile(GLenum shaderType, const char *filename)
shader = CompileShaderText(shaderType, buffer);
}
else {
+ fclose(f);
free(buffer);
return 0;
}