Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
fd556e32b31ec352641205a52cf8769c3af40413
/
.
/
Test
/
hlsl.attribute.expression.comp
blob: 535fbad42c8b758451d08d093a27f220713d2f38 [
file
] [
log
] [
blame
]
uniform
int
bound
;
#define
FOO
3
#define
BAR
2
[
numthreads
(
2
+
2
,
2
*
3
,
(
1
+
FOO
)*
BAR
)]
float4 main
()
:
SV_TARGET
{
[
unroll
(
5
*
2
+
1
)
]
for
(
int
x
=
0
;
x
<
bound
;
++
x
)
;
return
float4
(
0
,
0
,
0
,
0
);
}