Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
dd8287a10969b863dd510ed13ba8be8eb38f064e
/
.
/
Test
/
hlsl.struct.split.assign.frag
blob: e7fe028870c768a9663ba6512064f3096d6ab688 [
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
float3
(
1.0
);
}