xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.printf.comp (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1const string first = "first string";
2
3[numthreads(1,1,1)]
4void main() {
5    printf(first);
6    printf("please print this message.");
7    printf("Variables are: %d %d %.2f", 1u, 2u, 1.5f);
8    printf("Integers are: %d %d %d", 1, 2, 3);
9    printf("More: %d %d %d %d %d %d %d %d %d %d", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
10}
11
12