diff options
Diffstat (limited to 'src/mesa/shader/slang/library/gc_to_bin.c')
-rwxr-xr-x | src/mesa/shader/slang/library/gc_to_bin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/library/gc_to_bin.c b/src/mesa/shader/slang/library/gc_to_bin.c index 749c57a032..69895d84bf 100755 --- a/src/mesa/shader/slang/library/gc_to_bin.c +++ b/src/mesa/shader/slang/library/gc_to_bin.c @@ -32,7 +32,7 @@ static void gc_to_bin (grammar id, const char *in, const char *out) f = fopen (out, "w"); fprintf (f, "\n"); - fprintf (f, "/* DO NOT EDIT - THIS FILE AUTOMATICALLY GENERATED FROM THE FOLLOWING FILE: */\n"); + fprintf (f, "/* DO NOT EDIT - THIS FILE IS AUTOMATICALLY GENERATED FROM THE FOLLOWING FILE: */\n"); fprintf (f, "/* %s */\n", in); fprintf (f, "\n"); for (i = 0; i < size; i++) @@ -75,6 +75,7 @@ int main () gc_to_bin (id, "slang_core.gc", "slang_core_gc.h"); gc_to_bin (id, "slang_common_builtin.gc", "slang_common_builtin_gc.h"); gc_to_bin (id, "slang_fragment_builtin.gc", "slang_fragment_builtin_gc.h"); + gc_to_bin (id, "slang_builtin_vec4.gc", "slang_builtin_vec4_gc.h"); grammar_set_reg8 (id, (const byte *) "shader_type", 2); gc_to_bin (id, "slang_vertex_builtin.gc", "slang_vertex_builtin_gc.h"); |