Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
50dce096d986e9167c6623f86ced57304fdfeb0f
/
.
/
Test
/
hlsl.struct.split.assign.frag
blob: d9921f30e6ea8bca269194be69231a87bce4255d [
file
] [
log
] [
blame
]
struct
S
{
float
f
;
float4 pos
:
SV_Position
;
};
float4 main
(
int
i
,
S input
[
3
])
:
COLOR0
{
S a
[
3
];
input
=
a
;
return
a
[
1
].
pos
;
}