mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
glsl: Handle file tokens in apps/process.
This commit is contained in:
parent
a64ba93aab
commit
b7960b3d3a
1 changed files with 4 additions and 0 deletions
|
|
@ -348,6 +348,10 @@ main(int argc,
|
||||||
fprintf(out, "#line %u", outtokens[i].data.line);
|
fprintf(out, "#line %u", outtokens[i].data.line);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case SL_PP_FILE:
|
||||||
|
fprintf(out, " #file %u", outtokens[i].data.file);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue