Complain and exit if the given shader file doesn't exist.

This commit is contained in:
Kenneth Graunke
2010-06-16 12:10:55 -07:00
parent 1b1f43e608
commit 2848c4c183

View File

@@ -218,6 +218,10 @@ main(int argc, char **argv)
usage_fail(argv[0]);
shader->Source = load_text_file(argv[optind], &shader->SourceLen);
if (shader->Source == NULL) {
printf("File \"%s\" does not exist.\n", argv[optind]);
exit(EXIT_FAILURE);
}
compile_shader(shader);