mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 13:38:06 +02:00
glsl: Handle line tokens in apps/process.
This commit is contained in:
parent
4aa3222df3
commit
b6df77fb9a
1 changed files with 4 additions and 0 deletions
|
|
@ -344,6 +344,10 @@ main(int argc,
|
|||
fprintf(out, "#extension %s : disable", sl_pp_context_cstr(&context, outtokens[i].data.extension));
|
||||
break;
|
||||
|
||||
case SL_PP_LINE:
|
||||
fprintf(out, "#line %u", outtokens[i].data.line);
|
||||
break;
|
||||
|
||||
default:
|
||||
assert(0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue