Sign in
dawn
/
dawn
/
b268f525fc231d4f545ae9a40f002b46276bdd17
/
.
/
test
/
tint
/
extensions
/
texel_fetch
/
multiple_outputs
/
single_input.wgsl.expected.wgsl
blob: 5326e5a88760403ea8eb0a684a1324308bcf29e0 [
file
] [
log
] [
blame
]
enable chromium_experimental_framebuffer_fetch
;
struct
Out
{
@location
(
0
)
x
:
vec4f
,
@location
(
2
)
y
:
vec4f
,
@location
(
3
)
z
:
vec4f
,
}
@fragment
fn f
(
@color
(
0
)
fbf
:
vec4f
)
->
Out
{
return
Out
(
vec4f
(
10
),
fbf
,
vec4f
(
30
));
}