Sign in
fuchsia
/
third_party
/
glslang
/
refs/heads/upstream/GL_EXT_buffer_reference_uvec2
/
.
/
Test
/
hlsl.multiReturn.frag
blob: fdab772109e394796c53f29c7021ca3b3919fd23 [
file
] [
log
] [
blame
] [
edit
]
struct
S
{
float
f
;
float3 v
;
float3x3 m
;
};
cbuffer bufName
{
S s
;
};
S foo
()
{
return
s
;
}
void
main
()
{
foo
();
}