glslang/Test/baseResults/hlsl.pp.expand.frag.out
John Kessenich 546b78854a Printing preprocessed shaders (not a supported path): Fix #1490: strings
Put quote marks around strings, due to a change in how tokenization works.
2018-09-10 11:42:16 -06:00

20 lines
177 B
Plaintext

struct A
{
float4 a;
float4 b;
float4 c = { 1, 2, 3, 4 };
float4 d = {({ {(({ 1, 2, 3, 4 }))} })}, { { 1, 2, 3, 4 } };
};
void main()
{
"a string"
}